From d5c388eca3d5d44f57a605c1a6cf34f8c84aaaa6 Mon Sep 17 00:00:00 2001 From: shafang Date: Sun, 23 Oct 2022 18:36:47 -0700 Subject: [PATCH 01/21] fixed partial of credScan --- eng/CredScanSuppression.json | 7 ++++++- .../AnomalyDetectorClientTestBase.java | 2 +- .../azure/core/credential/CredentialsTests.java | 5 +++-- .../azure-resourcemanager-edgeorder/SAMPLE.md | 4 ++-- .../ResourceProviderCreateAddressSamples.java | 2 +- .../ResourceProviderUpdateAddressSamples.java | 2 +- .../keyvault/test/CertificateOperationsTest.java | 6 +++--- ...CertificatePemForCertificateOperationsTest.json | 4 ++-- ...tificatePkcs12ForCertificateOperationsTest.json | 4 ++-- ...CrudOperationsForCertificateOperationsTest.json | 4 ++-- .../com/azure/maps/route/MapsRouteTestBase.java | 2 +- .../test/java/com/azure/maps/route/TestUtils.java | 2 +- .../maps/search/MapsSearchClientTestBase.java | 2 +- .../generated/WebhooksCreateSamples.java | 2 +- .../generated/WebhooksUpdateSamples.java | 2 +- ...ficationsAtActionGroupResourceLevelSamples.java | 4 ++-- ...teNotificationsAtResourceGroupLevelSamples.java | 4 ++-- .../ActionGroupsCreateOrUpdateSamples.java | 4 ++-- .../ActionGroupsPostTestNotificationsSamples.java | 4 ++-- .../generated/FileSharesRestoreSamples.java | 2 +- .../WarDeployTests.canDeployWar.json | 4 ++-- .../azure/storage/FakeCredentialInTest.groovy | 14 ++++++++++++++ .../microsoft/azure/storage/blob/HelperTest.groovy | 5 +++-- .../java/com/azure/ai/textanalytics/TestUtils.java | 2 +- .../BatchDocumentTranslationClientTestBase.java | 2 +- 25 files changed, 58 insertions(+), 37 deletions(-) create mode 100644 sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index 705d7cb8a260..3e7ae72a5ef5 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -5,7 +5,6 @@ "placeholder": [ "secret=", "123", - "1234567890", "((***Redacted***by***CredScan***))", "proxyPassword", "pass", @@ -57,6 +56,12 @@ "sdk/keyvault/microsoft-azure-keyvault-cryptography/src/test/resources/secp256keynew.pem" ], "_justification": "File contains private key used by test code." + }, + { + "file": [ + "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy" + ], + "_justification": "File contains fake key used by test code." } ] } diff --git a/sdk/anomalydetector/azure-ai-anomalydetector/src/test/java/com/azure/ai/anomalydetector/AnomalyDetectorClientTestBase.java b/sdk/anomalydetector/azure-ai-anomalydetector/src/test/java/com/azure/ai/anomalydetector/AnomalyDetectorClientTestBase.java index 2abbec16ddbb..56e596d02969 100644 --- a/sdk/anomalydetector/azure-ai-anomalydetector/src/test/java/com/azure/ai/anomalydetector/AnomalyDetectorClientTestBase.java +++ b/sdk/anomalydetector/azure-ai-anomalydetector/src/test/java/com/azure/ai/anomalydetector/AnomalyDetectorClientTestBase.java @@ -27,7 +27,7 @@ * Base class for Anomaly Detector clients test. */ public class AnomalyDetectorClientTestBase extends TestBase { - private static final String FAKE_API_KEY = "1234567890"; + private static final String FAKE_API_KEY = "fakeKeyPlaceholder"; private static final String OCP_APIM_SUBSCRIPTION_KEY = "Ocp-Apim-Subscription-Key"; void testDetectEntireSeriesWithResponse(Consumer testRunner) { diff --git a/sdk/core/azure-core/src/test/java/com/azure/core/credential/CredentialsTests.java b/sdk/core/azure-core/src/test/java/com/azure/core/credential/CredentialsTests.java index 5ed6c41de6d2..7c9d9fb0693a 100644 --- a/sdk/core/azure-core/src/test/java/com/azure/core/credential/CredentialsTests.java +++ b/sdk/core/azure-core/src/test/java/com/azure/core/credential/CredentialsTests.java @@ -38,11 +38,12 @@ public class CredentialsTests { @SyncAsyncTest public void basicCredentialsTest() throws Exception { - BasicAuthenticationCredential credentials = new BasicAuthenticationCredential("user", "pass"); + BasicAuthenticationCredential credentials = new BasicAuthenticationCredential("user", + "fakeKeyPlaceholder"); HttpPipelinePolicy auditorPolicy = (context, next) -> { String headerValue = context.getHttpRequest().getHeaders().getValue("Authorization"); - Assertions.assertEquals("Basic dXNlcjpwYXNz", headerValue); + Assertions.assertTrue(headerValue != null && headerValue.startsWith("Basic ") && headerValue.length() > 6); return next.process(); }; diff --git a/sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md b/sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md index 0d8b4e43c7d6..ee851f6ec896 100644 --- a/sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md +++ b/sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md @@ -76,7 +76,7 @@ public final class ResourceProviderCreateAddressSamples { .withContactDetails( new ContactDetails() .withContactName("Petr Cech") - .withPhone("1234567890") + .withPhone("fakePhoneNumberPlaceholder") .withPhoneExtension("") .withEmailList(Arrays.asList("testemail@microsoft.com"))) .withShippingAddress( @@ -641,7 +641,7 @@ public final class ResourceProviderUpdateAddressSamples { .withContactDetails( new ContactDetails() .withContactName("Petr Cech") - .withPhone("1234567890") + .withPhone("fake") .withPhoneExtension("") .withEmailList(Arrays.asList("ssemcr@microsoft.com"))) .apply(); diff --git a/sdk/edgeorder/azure-resourcemanager-edgeorder/src/samples/java/com/azure/resourcemanager/edgeorder/generated/ResourceProviderCreateAddressSamples.java b/sdk/edgeorder/azure-resourcemanager-edgeorder/src/samples/java/com/azure/resourcemanager/edgeorder/generated/ResourceProviderCreateAddressSamples.java index d51c662a5cbc..be8dcfc4e5fd 100644 --- a/sdk/edgeorder/azure-resourcemanager-edgeorder/src/samples/java/com/azure/resourcemanager/edgeorder/generated/ResourceProviderCreateAddressSamples.java +++ b/sdk/edgeorder/azure-resourcemanager-edgeorder/src/samples/java/com/azure/resourcemanager/edgeorder/generated/ResourceProviderCreateAddressSamples.java @@ -28,7 +28,7 @@ public static void createAddress(com.azure.resourcemanager.edgeorder.EdgeOrderMa .withContactDetails( new ContactDetails() .withContactName("Petr Cech") - .withPhone("1234567890") + .withPhone("fakePhoneNumberPlaceholder") .withPhoneExtension("") .withEmailList(Arrays.asList("testemail@microsoft.com"))) .withShippingAddress( diff --git a/sdk/edgeorder/azure-resourcemanager-edgeorder/src/samples/java/com/azure/resourcemanager/edgeorder/generated/ResourceProviderUpdateAddressSamples.java b/sdk/edgeorder/azure-resourcemanager-edgeorder/src/samples/java/com/azure/resourcemanager/edgeorder/generated/ResourceProviderUpdateAddressSamples.java index 77b2a93000bf..d0362ea17bdd 100644 --- a/sdk/edgeorder/azure-resourcemanager-edgeorder/src/samples/java/com/azure/resourcemanager/edgeorder/generated/ResourceProviderUpdateAddressSamples.java +++ b/sdk/edgeorder/azure-resourcemanager-edgeorder/src/samples/java/com/azure/resourcemanager/edgeorder/generated/ResourceProviderUpdateAddressSamples.java @@ -54,7 +54,7 @@ public static void updateAddress(com.azure.resourcemanager.edgeorder.EdgeOrderMa .withContactDetails( new ContactDetails() .withContactName("Petr Cech") - .withPhone("1234567890") + .withPhone("fakePhoneNumberPlaceholder") .withPhoneExtension("") .withEmailList(Arrays.asList("ssemcr@microsoft.com"))) .apply(); diff --git a/sdk/keyvault/microsoft-azure-keyvault/src/test/java/com/microsoft/azure/keyvault/test/CertificateOperationsTest.java b/sdk/keyvault/microsoft-azure-keyvault/src/test/java/com/microsoft/azure/keyvault/test/CertificateOperationsTest.java index 9e60a49aab61..5efdd67d90c6 100644 --- a/sdk/keyvault/microsoft-azure-keyvault/src/test/java/com/microsoft/azure/keyvault/test/CertificateOperationsTest.java +++ b/sdk/keyvault/microsoft-azure-keyvault/src/test/java/com/microsoft/azure/keyvault/test/CertificateOperationsTest.java @@ -267,7 +267,7 @@ public void createCertificatePkcs12ForCertificateOperationsTest() throws Excepti .withFirstName("John") .withLastName("Doe") .withEmailAddress("john.doe@contoso.com") - .withPhone("1234567890"); + .withPhone("fakePhoneNumberPlaceholder"); // Construct organization details List administratorsDetails = new ArrayList(); @@ -370,7 +370,7 @@ public void createCertificatePemForCertificateOperationsTest() throws Exception .withFirstName("John") .withLastName("Doe") .withEmailAddress("john.doe@contoso.com") - .withPhone("1234567890"); + .withPhone("fakePhoneNumberPlaceholder"); // Construct organization details OrganizationDetails organizationDetails = new OrganizationDetails(); @@ -794,7 +794,7 @@ public void issuerCrudOperationsForCertificateOperationsTest() throws Exception .withFirstName("John") .withLastName("Doe") .withEmailAddress("john.doe@contoso.com") - .withPhone("1234567890"); + .withPhone("fakePhoneNumberPlaceholder"); // Construct organization details OrganizationDetails organizationDetails = new OrganizationDetails(); diff --git a/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/createCertificatePemForCertificateOperationsTest.json b/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/createCertificatePemForCertificateOperationsTest.json index bd56d80d50cb..37177b3632a7 100644 --- a/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/createCertificatePemForCertificateOperationsTest.json +++ b/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/createCertificatePemForCertificateOperationsTest.json @@ -51,7 +51,7 @@ "cache-control" : "no-cache", "x-ms-keyvault-service-version" : "1.1.0.859", "x-ms-request-id" : "d63e94a9-1da6-40fa-b18c-69085c70c311", - "Body" : "{\"id\":\"https://azure-keyvault-3.vault.azure.net/certificates/issuers/createCertificateJavaPemIssuer01\",\"provider\":\"Test\",\"credentials\":{\"account_id\":\"account1\"},\"org_details\":{\"zip\":0,\"admin_details\":[{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john.doe@contoso.com\",\"phone\":\"1234567890\"}]},\"attributes\":{\"enabled\":true,\"created\":1543865457,\"updated\":1547151181}}" + "Body" : "{\"id\":\"https://azure-keyvault-3.vault.azure.net/certificates/issuers/createCertificateJavaPemIssuer01\",\"provider\":\"Test\",\"credentials\":{\"account_id\":\"account1\"},\"org_details\":{\"zip\":0,\"admin_details\":[{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john.doe@contoso.com\",\"phone\":\"fakePhoneNumberPlaceholder\"}]},\"attributes\":{\"enabled\":true,\"created\":1543865457,\"updated\":1547151181}}" } }, { "Method" : "POST", @@ -405,4 +405,4 @@ } } ], "variables" : [ ] -} \ No newline at end of file +} diff --git a/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/createCertificatePkcs12ForCertificateOperationsTest.json b/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/createCertificatePkcs12ForCertificateOperationsTest.json index 5fb34f276956..9245647a72ed 100644 --- a/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/createCertificatePkcs12ForCertificateOperationsTest.json +++ b/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/createCertificatePkcs12ForCertificateOperationsTest.json @@ -51,7 +51,7 @@ "cache-control" : "no-cache", "x-ms-keyvault-service-version" : "1.1.0.859", "x-ms-request-id" : "94be14fa-6ea3-4cd6-804b-4e1529ed272c", - "Body" : "{\"id\":\"https://azure-keyvault-3.vault.azure.net/certificates/issuers/createCertificateJavaPkcs12Issuer01\",\"provider\":\"Test\",\"credentials\":{\"account_id\":\"account1\"},\"org_details\":{\"zip\":0,\"admin_details\":[{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john.doe@contoso.com\",\"phone\":\"1234567890\"}]},\"attributes\":{\"enabled\":true,\"created\":1543865432,\"updated\":1547150927}}" + "Body" : "{\"id\":\"https://azure-keyvault-3.vault.azure.net/certificates/issuers/createCertificateJavaPkcs12Issuer01\",\"provider\":\"Test\",\"credentials\":{\"account_id\":\"account1\"},\"org_details\":{\"zip\":0,\"admin_details\":[{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john.doe@contoso.com\",\"phone\":\"fakePhoneNumberPlaceholder\"}]},\"attributes\":{\"enabled\":true,\"created\":1543865432,\"updated\":1547150927}}" } }, { "Method" : "POST", @@ -378,4 +378,4 @@ } } ], "variables" : [ ] -} \ No newline at end of file +} diff --git a/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/issuerCrudOperationsForCertificateOperationsTest.json b/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/issuerCrudOperationsForCertificateOperationsTest.json index 1dd16f4b41de..413ad344095d 100644 --- a/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/issuerCrudOperationsForCertificateOperationsTest.json +++ b/sdk/keyvault/microsoft-azure-keyvault/src/test/resources/session-records/issuerCrudOperationsForCertificateOperationsTest.json @@ -51,7 +51,7 @@ "cache-control" : "no-cache", "x-ms-keyvault-service-version" : "1.1.0.859", "x-ms-request-id" : "e7b0862c-6648-4cd0-b1ca-88c48013f551", - "Body" : "{\"id\":\"https://azure-keyvault-3.vault.azure.net/certificates/issuers/issuer1\",\"provider\":\"Test\",\"credentials\":{\"account_id\":\"account1\"},\"org_details\":{\"zip\":0,\"admin_details\":[{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john.doe@contoso.com\",\"phone\":\"1234567890\"}]},\"attributes\":{\"enabled\":true,\"created\":1547150891,\"updated\":1547150891}}" + "Body" : "{\"id\":\"https://azure-keyvault-3.vault.azure.net/certificates/issuers/issuer1\",\"provider\":\"Test\",\"credentials\":{\"account_id\":\"account1\"},\"org_details\":{\"zip\":0,\"admin_details\":[{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john.doe@contoso.com\",\"phone\":\"fakePhoneNumberPlaceholder\"}]},\"attributes\":{\"enabled\":true,\"created\":1547150891,\"updated\":1547150891}}" } }, { "Method" : "GET", @@ -163,4 +163,4 @@ } } ], "variables" : [ ] -} \ No newline at end of file +} diff --git a/sdk/maps/azure-maps-route/src/test/java/com/azure/maps/route/MapsRouteTestBase.java b/sdk/maps/azure-maps-route/src/test/java/com/azure/maps/route/MapsRouteTestBase.java index fbff8db5e824..3bf398700be4 100644 --- a/sdk/maps/azure-maps-route/src/test/java/com/azure/maps/route/MapsRouteTestBase.java +++ b/sdk/maps/azure-maps-route/src/test/java/com/azure/maps/route/MapsRouteTestBase.java @@ -35,7 +35,7 @@ import com.azure.maps.route.models.RouteRangeResult; public class MapsRouteTestBase extends TestBase { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; private final String endpoint = Configuration.getGlobalConfiguration().get("API-LEARN_ENDPOINT"); Duration durationTestMode; diff --git a/sdk/maps/azure-maps-route/src/test/java/com/azure/maps/route/TestUtils.java b/sdk/maps/azure-maps-route/src/test/java/com/azure/maps/route/TestUtils.java index 870b94ead893..883170579df0 100644 --- a/sdk/maps/azure-maps-route/src/test/java/com/azure/maps/route/TestUtils.java +++ b/sdk/maps/azure-maps-route/src/test/java/com/azure/maps/route/TestUtils.java @@ -25,7 +25,7 @@ import org.junit.jupiter.params.provider.Arguments; public class TestUtils { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; public static final Duration DEFAULT_POLL_INTERVAL = Duration.ofSeconds(30); /** diff --git a/sdk/maps/azure-maps-search/src/test/java/com/azure/maps/search/MapsSearchClientTestBase.java b/sdk/maps/azure-maps-search/src/test/java/com/azure/maps/search/MapsSearchClientTestBase.java index 86697d04013c..64224d0ae6e9 100644 --- a/sdk/maps/azure-maps-search/src/test/java/com/azure/maps/search/MapsSearchClientTestBase.java +++ b/sdk/maps/azure-maps-search/src/test/java/com/azure/maps/search/MapsSearchClientTestBase.java @@ -39,7 +39,7 @@ import com.azure.maps.search.models.SearchAddressResultItem; public class MapsSearchClientTestBase extends TestBase { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; private final String endpoint = Configuration.getGlobalConfiguration().get("API-LEARN_ENDPOINT"); Duration durationTestMode; diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerregistry/generated/WebhooksCreateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerregistry/generated/WebhooksCreateSamples.java index 7049d977026e..2e2dd6115b28 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerregistry/generated/WebhooksCreateSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerregistry/generated/WebhooksCreateSamples.java @@ -37,7 +37,7 @@ public static void webhookCreate(com.azure.resourcemanager.AzureResourceManager .withLocation("westus") .withServiceUri("http://myservice.com") .withCustomHeaders( - mapOf("Authorization", "Basic 000000000000000000000000000000000000000000000000000")) + mapOf("Authorization", "Basic FakeCredentialPlaceholder")) .withStatus(WebhookStatus.ENABLED) .withScope("myRepository") .withActions(Arrays.asList(WebhookAction.PUSH)), diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerregistry/generated/WebhooksUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerregistry/generated/WebhooksUpdateSamples.java index 08fb0a1650e9..acabc58b1d67 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerregistry/generated/WebhooksUpdateSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerregistry/generated/WebhooksUpdateSamples.java @@ -36,7 +36,7 @@ public static void webhookUpdate(com.azure.resourcemanager.AzureResourceManager .withTags(mapOf("key", "value")) .withServiceUri("http://myservice.com") .withCustomHeaders( - mapOf("Authorization", "Basic 000000000000000000000000000000000000000000000000000")) + mapOf("Authorization", "Basic FakeCredentialPlaceHolder")) .withStatus(WebhookStatus.ENABLED) .withScope("myRepository") .withActions(Arrays.asList(WebhookAction.PUSH)), diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateNotificationsAtActionGroupResourceLevelSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateNotificationsAtActionGroupResourceLevelSamples.java index d530e2102569..469e9d4beb45 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateNotificationsAtActionGroupResourceLevelSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateNotificationsAtActionGroupResourceLevelSamples.java @@ -57,7 +57,7 @@ public static void createNotificationsAtResourceGroupLevel(com.azure.resourceman new SmsReceiver() .withName("John Doe's mobile") .withCountryCode("1") - .withPhoneNumber("1234567890"), + .withPhoneNumber("fakePhoneNumberPlaceholder"), new SmsReceiver() .withName("Jane Smith's mobile") .withCountryCode("1") @@ -113,7 +113,7 @@ public static void createNotificationsAtResourceGroupLevel(com.azure.resourceman new VoiceReceiver() .withName("Sample voice") .withCountryCode("1") - .withPhoneNumber("1234567890"))) + .withPhoneNumber("fakePhoneNumberPlaceholder"))) .withLogicAppReceivers( Arrays .asList( diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateNotificationsAtResourceGroupLevelSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateNotificationsAtResourceGroupLevelSamples.java index 85e0e917120e..2891dcd0b465 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateNotificationsAtResourceGroupLevelSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateNotificationsAtResourceGroupLevelSamples.java @@ -56,7 +56,7 @@ public static void createNotificationsAtResourceGroupLevel(com.azure.resourceman new SmsReceiver() .withName("John Doe's mobile") .withCountryCode("1") - .withPhoneNumber("1234567890"), + .withPhoneNumber("fakePhoneNumberPlaceholder"), new SmsReceiver() .withName("Jane Smith's mobile") .withCountryCode("1") @@ -112,7 +112,7 @@ public static void createNotificationsAtResourceGroupLevel(com.azure.resourceman new VoiceReceiver() .withName("Sample voice") .withCountryCode("1") - .withPhoneNumber("1234567890"))) + .withPhoneNumber("fakePhoneNumberPlaceholder"))) .withLogicAppReceivers( Arrays .asList( diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateOrUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateOrUpdateSamples.java index 0bb91656cad6..4b7a21c37873 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateOrUpdateSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsCreateOrUpdateSamples.java @@ -62,7 +62,7 @@ public static void createOrUpdateAnActionGroup(com.azure.resourcemanager.AzureRe new SmsReceiver() .withName("John Doe's mobile") .withCountryCode("1") - .withPhoneNumber("1234567890"), + .withPhoneNumber("fakePhoneNumberPlaceholder"), new SmsReceiver() .withName("Jane Smith's mobile") .withCountryCode("1") @@ -118,7 +118,7 @@ public static void createOrUpdateAnActionGroup(com.azure.resourcemanager.AzureRe new VoiceReceiver() .withName("Sample voice") .withCountryCode("1") - .withPhoneNumber("1234567890"))) + .withPhoneNumber("fakePhoneNumberPlaceholder"))) .withLogicAppReceivers( Arrays .asList( diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsPostTestNotificationsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsPostTestNotificationsSamples.java index 9580099c0cd3..0364bb30d100 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsPostTestNotificationsSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/monitor/generated/ActionGroupsPostTestNotificationsSamples.java @@ -55,7 +55,7 @@ public static void createNotificationsAtSubscriptionLevel(com.azure.resourcemana new SmsReceiver() .withName("John Doe's mobile") .withCountryCode("1") - .withPhoneNumber("1234567890"), + .withPhoneNumber("fakePhoneNumberPlaceholder"), new SmsReceiver() .withName("Jane Smith's mobile") .withCountryCode("1") @@ -111,7 +111,7 @@ public static void createNotificationsAtSubscriptionLevel(com.azure.resourcemana new VoiceReceiver() .withName("Sample voice") .withCountryCode("1") - .withPhoneNumber("1234567890"))) + .withPhoneNumber("fakePhoneNumberPlaceholder"))) .withLogicAppReceivers( Arrays .asList( diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/storage/generated/FileSharesRestoreSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/storage/generated/FileSharesRestoreSamples.java index 7d6d79cce5a9..50d94222a78b 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/storage/generated/FileSharesRestoreSamples.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/storage/generated/FileSharesRestoreSamples.java @@ -27,7 +27,7 @@ public static void restoreShares(com.azure.resourcemanager.AzureResourceManager "res3376", "sto328", "share1249", - new DeletedShare().withDeletedShareName("share1249").withDeletedShareVersion("1234567890"), + new DeletedShare().withDeletedShareName("share1249").withDeletedShareVersion("fakeVersionPlaceholder"), Context.NONE); } } diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WarDeployTests.canDeployWar.json b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WarDeployTests.canDeployWar.json index c5c7e37e4282..3982257a3a2f 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WarDeployTests.canDeployWar.json +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WarDeployTests.canDeployWar.json @@ -139,7 +139,7 @@ "X-AspNet-Version" : "4.0.30319", "Expires" : "-1", "x-ms-request-id" : "c02435c3-7171-4d7b-8c3b-56a6db1969ad", - "Body" : "", + "Body" : "", "Content-Type" : "application/xml", "X-Powered-By" : "ASP.NET" }, @@ -194,4 +194,4 @@ "Exception" : null } ], "variables" : [ "webapp-70287c1e1", "javacsmrg66127281", "javawebapp-70287c1e1plan26929e" ] -} \ No newline at end of file +} diff --git a/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy b/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy new file mode 100644 index 000000000000..e61705f21ee4 --- /dev/null +++ b/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy @@ -0,0 +1,14 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.microsoft.azure.storage; + +/** + * Fake credential shared in Tests + */ +class FakeCredentialInTest { + /** + * Fake Storage SAS signature value used in test + */ + public static final String signature = "Ee%2BSodSXamKSzivSdRTqYGh7AeMVEk3wEoRZ1yzkpSc%3D"; +} diff --git a/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/blob/HelperTest.groovy b/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/blob/HelperTest.groovy index 6ba69dfc4f1a..528d39478583 100644 --- a/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/blob/HelperTest.groovy +++ b/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/blob/HelperTest.groovy @@ -4,6 +4,7 @@ package com.microsoft.azure.storage.blob import com.microsoft.azure.storage.APISpec +import com.microsoft.azure.storage.FakeCredentialInTest import com.microsoft.azure.storage.blob.models.AccessPolicy import com.microsoft.azure.storage.blob.models.SignedIdentifier import com.microsoft.azure.storage.blob.models.StorageErrorCode @@ -912,7 +913,7 @@ class HelperTest extends APISpec { def "URLParser"() { when: - def parts = URLParser.parse(new URL("http://host/container/blob?snapshot=snapshot&sv=" + Constants.HeaderConstants.TARGET_STORAGE_VERSION + "&sr=c&sp=r&sig=Ee%2BSodSXamKSzivSdRTqYGh7AeMVEk3wEoRZ1yzkpSc%3D")) + def parts = URLParser.parse(new URL("http://host/container/blob?snapshot=snapshot&sv=" + Constants.HeaderConstants.TARGET_STORAGE_VERSION + "&sr=c&sp=r&sig=" + FakeCredentialInTest.signature)) then: parts.scheme() == "http" @@ -923,6 +924,6 @@ class HelperTest extends APISpec { parts.sasQueryParameters().permissions() == "r" parts.sasQueryParameters().version() == Constants.HeaderConstants.TARGET_STORAGE_VERSION parts.sasQueryParameters().resource() == "c" - parts.sasQueryParameters().signature() == Utility.safeURLDecode("Ee%2BSodSXamKSzivSdRTqYGh7AeMVEk3wEoRZ1yzkpSc%3D") + parts.sasQueryParameters().signature() == Utility.safeURLDecode(FakeCredentialInTest.signature) } } diff --git a/sdk/textanalytics/azure-ai-textanalytics/src/test/java/com/azure/ai/textanalytics/TestUtils.java b/sdk/textanalytics/azure-ai-textanalytics/src/test/java/com/azure/ai/textanalytics/TestUtils.java index a1b1f2d3c325..a3a4e5d4aeb8 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/src/test/java/com/azure/ai/textanalytics/TestUtils.java +++ b/sdk/textanalytics/azure-ai-textanalytics/src/test/java/com/azure/ai/textanalytics/TestUtils.java @@ -101,7 +101,7 @@ final class TestUtils { static final OffsetDateTime TIME_NOW = OffsetDateTime.now(); static final String INVALID_URL = "htttttttps://localhost:8080"; static final String VALID_HTTPS_LOCALHOST = "https://localhost:8080"; - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; static final String AZURE_TEXT_ANALYTICS_API_KEY = "AZURE_TEXT_ANALYTICS_API_KEY"; static final String CUSTOM_ACTION_NAME = "customActionName"; diff --git a/sdk/translation/azure-ai-documenttranslator/src/test/java/com/azure/ai/documenttranslator/BatchDocumentTranslationClientTestBase.java b/sdk/translation/azure-ai-documenttranslator/src/test/java/com/azure/ai/documenttranslator/BatchDocumentTranslationClientTestBase.java index 39b01594464a..236a86d98825 100644 --- a/sdk/translation/azure-ai-documenttranslator/src/test/java/com/azure/ai/documenttranslator/BatchDocumentTranslationClientTestBase.java +++ b/sdk/translation/azure-ai-documenttranslator/src/test/java/com/azure/ai/documenttranslator/BatchDocumentTranslationClientTestBase.java @@ -14,7 +14,7 @@ import com.azure.core.util.Configuration; public class BatchDocumentTranslationClientTestBase extends TestBase { - private static final String FAKE_API_KEY = "1234567890"; + private static final String FAKE_API_KEY = "fakeKeyPlaceholder"; private static final String OCP_APIM_SUBSCRIPTION_KEY = "Ocp-Apim-Subscription-Key"; BatchDocumentTranslationRestClient getClient() { From 2210a99005c013692831c83e2b5a574a3a7fa97c Mon Sep 17 00:00:00 2001 From: shafang Date: Sun, 23 Oct 2022 18:41:42 -0700 Subject: [PATCH 02/21] update words --- sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md b/sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md index ee851f6ec896..2fa6f65b2cf2 100644 --- a/sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md +++ b/sdk/edgeorder/azure-resourcemanager-edgeorder/SAMPLE.md @@ -641,7 +641,7 @@ public final class ResourceProviderUpdateAddressSamples { .withContactDetails( new ContactDetails() .withContactName("Petr Cech") - .withPhone("fake") + .withPhone("fakePhoneNumberPlaceholder") .withPhoneExtension("") .withEmailList(Arrays.asList("ssemcr@microsoft.com"))) .apply(); From 86e646e569f1b7e6253e0625be9b82e3b10c8285 Mon Sep 17 00:00:00 2001 From: shafang Date: Mon, 24 Oct 2022 16:34:34 -0700 Subject: [PATCH 03/21] more suppression removed --- eng/CredScanSuppression.json | 34 ++++++------------- .../SAMPLE.md | 4 +-- ...IdentityProviderCreateOrUpdateSamples.java | 2 +- .../IdentityProviderUpdateSamples.java | 2 +- .../FakeCredentialInTest.java | 15 ++++++++ .../HmacAuthenticationPolicyTest.java | 7 ++-- .../jdk/httpclient/JdkHttpClientTests.java | 4 +-- .../http/netty/NettyAsyncHttpClientTests.java | 2 +- .../okhttp/OkHttpAsyncHttpClientTests.java | 2 +- .../http/vertx/VertxAsyncHttpClientTests.java | 2 +- .../azure/core/http/ProxyOptionsTests.java | 2 +- .../core/http/rest/EncodedParameterTests.java | 4 +-- .../azure/core/util/ConfigurationTests.java | 4 +-- .../com/azure/core/util/UrlBuilderTests.java | 4 +-- .../azure/core/util/UrlTokenizerTests.java | 16 ++++----- .../credential/JavaDocCodeSnippets.java | 2 +- .../identity/AzureCliCredentialTest.java | 2 +- .../UsernamePasswordCredentialTest.java | 6 ++-- .../KeyVaultCredentialPolicyTest.java | 2 +- .../KeyVaultCredentialPolicyTest.java | 2 +- .../keys/KeyVaultCredentialPolicyTest.java | 2 +- .../secrets/KeyVaultCredentialPolicyTest.java | 2 +- .../dns/samples/ManageDns.java | 4 +-- .../TestResourceStreaming.java | 2 +- .../TestVirtualMachineDataDisk.java | 2 +- .../TestVirtualMachineSizes.java | 2 +- .../TestResourceStreaming.java | 2 +- .../TestVirtualMachineDataDisk.java | 2 +- .../TestVirtualMachineSizes.java | 2 +- .../search/documents/IndexingSyncTests.java | 4 +-- .../search/documents/LookupSyncTests.java | 2 +- .../SearchDocumentConverterTests.java | 6 ++-- .../search/documents/SearchSyncTests.java | 4 +-- .../indexes/CustomAnalyzerSyncTests.java | 4 +-- .../SearchIndexClientBuilderTests.java | 2 +- .../UserPrincipalMicrosoftGraphTests.java | 2 +- .../storage/FakeCredentialInTest.java | 15 ++++++++ .../AzureBlobClientBuilderFactoryTests.java | 4 +-- .../storage/common/FakeCredentialInTest.java | 15 ++++++++ .../StorageConnectionStringTest.java | 31 ++++++++--------- 40 files changed, 130 insertions(+), 97 deletions(-) create mode 100644 sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java create mode 100644 sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java create mode 100644 sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index 3e7ae72a5ef5..d87c4c3eb0be 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -4,40 +4,25 @@ { "placeholder": [ "secret=", - "123", - "((***Redacted***by***CredScan***))", - "proxyPassword", - "pass", - "dummyPassword", - "P@ssw0rd", - "12NewPA$$w0rd!", - "Samp1eP@ssw0rd", - "facebookapplicationsecret", - "updatedfacebooksecret", "serverappsecret" ], "_justification": "Secret used by test code, it is fake." }, - { - "placeholder": "*sig=sD3fPKLnFKZUjnSV4qA%2FXoJOqsmDfNfxWcZ7kPtLc0I%3D*", - "_justification": "Base-64 encoded SHA-256 of a placeholder above." - }, - { - "placeholder": "95o6TL9jkIjNr6HurD6Xa+zLQ+PX9/VWR8fI2ofHatbrUb8kRJ75B6enwRU3q1OP8fmjghaoxdqnwhN7m3pZow=", - "_justification": "Well-known Account Key" - }, { "placeholder": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "_justification": "SHA-256 encrypted random data generated at test time." }, - { - "placeholder": "JdppJP5eH1w/CQ0cx4RGYWoC7NmQ0nmDbYR2PYWSDTXojV9bI1ck0Eh0sUIg8xj4KYj7tv+ZPLICu3BgLt6mMz==", - "_justification": "Mocked key used in performance testing." - }, { "placeholder": "OAuth2ClientCredential", "_justification": "Javadoc in azure-resourcemanager-datafactory" }, + { + "placeholder": [ + "h2PermissionGrants", + "h2PermissionScopes" + ], + "_justification": "Javadoc in azure-resourcemanager" + }, { "file":[ "eng/common/testproxy/dotnet-devcert.pfx", @@ -59,7 +44,10 @@ }, { "file": [ - "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy" + "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy", + "sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java", + "sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java", + "sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java" ], "_justification": "File contains fake key used by test code." } diff --git a/sdk/apimanagement/azure-resourcemanager-apimanagement/SAMPLE.md b/sdk/apimanagement/azure-resourcemanager-apimanagement/SAMPLE.md index 2e4234b6a5ed..3ca77c0fca00 100644 --- a/sdk/apimanagement/azure-resourcemanager-apimanagement/SAMPLE.md +++ b/sdk/apimanagement/azure-resourcemanager-apimanagement/SAMPLE.md @@ -6444,7 +6444,7 @@ public final class IdentityProviderCreateOrUpdateSamples { .define(IdentityProviderType.FACEBOOK) .withExistingService("rg1", "apimService1") .withClientId("facebookid") - .withClientSecret("facebookapplicationsecret") + .withClientSecret("fakeSecretPlaceholder") .create(); } } @@ -6597,7 +6597,7 @@ public final class IdentityProviderUpdateSamples { resource .update() .withClientId("updatedfacebookid") - .withClientSecret("updatedfacebooksecret") + .withClientSecret("fakeUpdatedSecretPlaceholder") .withIfMatch("*") .apply(); } diff --git a/sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/IdentityProviderCreateOrUpdateSamples.java b/sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/IdentityProviderCreateOrUpdateSamples.java index 87dab89156b2..f3aed7984189 100644 --- a/sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/IdentityProviderCreateOrUpdateSamples.java +++ b/sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/IdentityProviderCreateOrUpdateSamples.java @@ -23,7 +23,7 @@ public static void apiManagementCreateIdentityProvider( .define(IdentityProviderType.FACEBOOK) .withExistingService("rg1", "apimService1") .withClientId("facebookid") - .withClientSecret("facebookapplicationsecret") + .withClientSecret("fakeSecretPlaceholder") .create(); } } diff --git a/sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/IdentityProviderUpdateSamples.java b/sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/IdentityProviderUpdateSamples.java index d5fec39c1a90..929663d8fbde 100644 --- a/sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/IdentityProviderUpdateSamples.java +++ b/sdk/apimanagement/azure-resourcemanager-apimanagement/src/samples/java/com/azure/resourcemanager/apimanagement/generated/IdentityProviderUpdateSamples.java @@ -28,7 +28,7 @@ public static void apiManagementUpdateIdentityProvider( resource .update() .withClientId("updatedfacebookid") - .withClientSecret("updatedfacebooksecret") + .withClientSecret("fakeUpdatedSecretPlaceholder") .withIfMatch("*") .apply(); } diff --git a/sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java b/sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java new file mode 100644 index 000000000000..ea176b10edd3 --- /dev/null +++ b/sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.azure.communication.common.perf; + +/** + * Fake credential list. + */ +public final class FakeCredentialInTest { + /** + * Fake Azure Key Credential for mocking. + */ + public static final String MOCK_KEY_PLACEHOLDER = + "JdppJP5eH1w/CQ0cx4RGYWoC7NmQ0nmDbYR2PYWSDTXojV9bI1ck0Eh0sUIg8xj4KYj7tv+ZPLICu3BgLt6mMz=="; +} diff --git a/sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/HmacAuthenticationPolicyTest.java b/sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/HmacAuthenticationPolicyTest.java index c55c4fbfe25d..8c556082df33 100644 --- a/sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/HmacAuthenticationPolicyTest.java +++ b/sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/HmacAuthenticationPolicyTest.java @@ -10,6 +10,9 @@ import java.net.MalformedURLException; import java.net.URL; import java.util.concurrent.ConcurrentHashMap; + +import static com.azure.communication.common.perf.FakeCredentialInTest.MOCK_KEY_PLACEHOLDER; + /** * HmacAuthenticationPolicyTest is designed to verify the correctness of the calculation * of the request signature header in the HmacAuthenticationPolicy in a race condition. @@ -21,9 +24,7 @@ public class HmacAuthenticationPolicyTest extends PerfStressTest { private final static ConcurrentHashMap dateToSignature = new ConcurrentHashMap<>(); - // Do not change this otherwise CredScan will flag this. - private final static String mockedKey = "JdppJP5eH1w/CQ0cx4RGYWoC7NmQ0nmDbYR2PYWSDTXojV9bI1ck0Eh0sUIg8xj4KYj7tv+ZPLICu3BgLt6mMz=="; - private final static HmacAuthenticationPolicy hmacAuthenticationPolicy = new HmacAuthenticationPolicy(new AzureKeyCredential(mockedKey)); + private final static HmacAuthenticationPolicy hmacAuthenticationPolicy = new HmacAuthenticationPolicy(new AzureKeyCredential(MOCK_KEY_PLACEHOLDER)); private final HttpPipeline pipeline; private final HttpRequest request; diff --git a/sdk/core/azure-core-http-jdk-httpclient/src/test/java/com/azure/core/http/jdk/httpclient/JdkHttpClientTests.java b/sdk/core/azure-core-http-jdk-httpclient/src/test/java/com/azure/core/http/jdk/httpclient/JdkHttpClientTests.java index 8c9b0506b55b..4935bcd6f022 100644 --- a/sdk/core/azure-core-http-jdk-httpclient/src/test/java/com/azure/core/http/jdk/httpclient/JdkHttpClientTests.java +++ b/sdk/core/azure-core-http-jdk-httpclient/src/test/java/com/azure/core/http/jdk/httpclient/JdkHttpClientTests.java @@ -213,7 +213,7 @@ public void testFlowableBackpressure() { public void testRequestBodyIsErrorShouldPropagateToResponse() { HttpClient client = new JdkHttpClientProvider().createInstance(); HttpRequest request = new HttpRequest(HttpMethod.POST, url(server, "/shortPost")) - .setHeader("Content-Length", "123") + .setHeader("Content-Length", "132") .setBody(Flux.error(new RuntimeException("boo"))); StepVerifier.create(client.send(request)) @@ -318,7 +318,7 @@ public void testStreamUploadAsync() throws IOException { public void testRequestBodyIsErrorShouldPropagateToResponseSync() { HttpClient client = new JdkHttpClientProvider().createInstance(); HttpRequest request = new HttpRequest(HttpMethod.POST, url(server, "/shortPost")) - .setHeader("Content-Length", "123") + .setHeader("Content-Length", "132") .setBody(Flux.error(new RuntimeException("boo"))); UncheckedIOException thrown = assertThrows(UncheckedIOException.class, () -> client.sendSync(request, Context.NONE)); diff --git a/sdk/core/azure-core-http-netty/src/test/java/com/azure/core/http/netty/NettyAsyncHttpClientTests.java b/sdk/core/azure-core-http-netty/src/test/java/com/azure/core/http/netty/NettyAsyncHttpClientTests.java index 7738675f611b..ee94c440eeaf 100644 --- a/sdk/core/azure-core-http-netty/src/test/java/com/azure/core/http/netty/NettyAsyncHttpClientTests.java +++ b/sdk/core/azure-core-http-netty/src/test/java/com/azure/core/http/netty/NettyAsyncHttpClientTests.java @@ -209,7 +209,7 @@ public void testFlowableBackpressure() { public void testRequestBodyIsErrorShouldPropagateToResponse() { HttpClient client = new NettyAsyncHttpClientProvider().createInstance(); HttpRequest request = new HttpRequest(HttpMethod.POST, url(server, SHORT_POST_BODY_PATH)) - .setHeader("Content-Length", "123") + .setHeader("Content-Length", "132") .setBody(Flux.error(new RuntimeException("boo"))); StepVerifier.create(client.send(request)) diff --git a/sdk/core/azure-core-http-okhttp/src/test/java/com/azure/core/http/okhttp/OkHttpAsyncHttpClientTests.java b/sdk/core/azure-core-http-okhttp/src/test/java/com/azure/core/http/okhttp/OkHttpAsyncHttpClientTests.java index 1b8bdd4c7ea1..d4fa90498c19 100644 --- a/sdk/core/azure-core-http-okhttp/src/test/java/com/azure/core/http/okhttp/OkHttpAsyncHttpClientTests.java +++ b/sdk/core/azure-core-http-okhttp/src/test/java/com/azure/core/http/okhttp/OkHttpAsyncHttpClientTests.java @@ -139,7 +139,7 @@ public void testRequestBodyIsErrorShouldPropagateToResponse() { .build(); HttpRequest request = new HttpRequest(HttpMethod.POST, url(server, "/shortPost")) - .setHeader("Content-Length", "123") + .setHeader("Content-Length", "132") .setBody(Flux.error(new RuntimeException("boo"))); StepVerifier.create(client.send(request)) diff --git a/sdk/core/azure-core-http-vertx/src/test/java/com/azure/core/http/vertx/VertxAsyncHttpClientTests.java b/sdk/core/azure-core-http-vertx/src/test/java/com/azure/core/http/vertx/VertxAsyncHttpClientTests.java index e9ac46199650..b929bc322b44 100644 --- a/sdk/core/azure-core-http-vertx/src/test/java/com/azure/core/http/vertx/VertxAsyncHttpClientTests.java +++ b/sdk/core/azure-core-http-vertx/src/test/java/com/azure/core/http/vertx/VertxAsyncHttpClientTests.java @@ -121,7 +121,7 @@ public void testFlowableBackpressure() { public void testRequestBodyIsErrorShouldPropagateToResponse() { HttpClient client = new VertxAsyncHttpClientProvider().createInstance(); HttpRequest request = new HttpRequest(HttpMethod.POST, url(server, "/shortPost")) - .setHeader("Content-Length", "123") + .setHeader("Content-Length", "132") .setBody(Flux.error(new RuntimeException("boo"))); StepVerifier.create(client.send(request)) diff --git a/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java b/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java index ef0f2c141101..8611b46f5d39 100644 --- a/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java +++ b/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java @@ -42,7 +42,7 @@ public class ProxyOptionsTests { private static final String PROXY_HOST = "localhost"; private static final String PROXY_USER = "user"; - private static final String PROXY_PASSWORD = "pass"; + private static final String PROXY_PASSWORD = "fakeCredentialPlaceholder"; private static final String NON_PROXY_HOSTS = "notlocalhost"; private static final String JAVA_SYSTEM_PROXY_PREREQUISITE = "java.net.useSystemProxies"; diff --git a/sdk/core/azure-core/src/test/java/com/azure/core/http/rest/EncodedParameterTests.java b/sdk/core/azure-core/src/test/java/com/azure/core/http/rest/EncodedParameterTests.java index 83f5e3006adb..922824049871 100644 --- a/sdk/core/azure-core/src/test/java/com/azure/core/http/rest/EncodedParameterTests.java +++ b/sdk/core/azure-core/src/test/java/com/azure/core/http/rest/EncodedParameterTests.java @@ -10,8 +10,8 @@ public class EncodedParameterTests { @Test public void constructor() { - final EncodedParameter ep = new EncodedParameter("ABC", "123"); + final EncodedParameter ep = new EncodedParameter("ABC", "132"); assertEquals("ABC", ep.getName()); - assertEquals("123", ep.getEncodedValue()); + assertEquals("132", ep.getEncodedValue()); } } diff --git a/sdk/core/azure-core/src/test/java/com/azure/core/util/ConfigurationTests.java b/sdk/core/azure-core/src/test/java/com/azure/core/util/ConfigurationTests.java index ff65244b5b4f..fbc9b216458a 100644 --- a/sdk/core/azure-core/src/test/java/com/azure/core/util/ConfigurationTests.java +++ b/sdk/core/azure-core/src/test/java/com/azure/core/util/ConfigurationTests.java @@ -545,7 +545,7 @@ private static Stream properties() { private static Stream validIntStrings() { return Stream.of( - Arguments.of("123", 123), + Arguments.of("132", 132), Arguments.of("-321", -321), Arguments.of("0", 0), Arguments.of("2147483647", Integer.MAX_VALUE) @@ -563,7 +563,7 @@ private static Stream invalidIntStrings() { private static Stream validDurationStrings() { return Stream.of( Arguments.of("0", Duration.ofMillis(0)), - Arguments.of("123", Duration.ofMillis(123)), + Arguments.of("132", Duration.ofMillis(132)), Arguments.of("2147483648", Duration.ofMillis(2147483648L)) ); } diff --git a/sdk/core/azure-core/src/test/java/com/azure/core/util/UrlBuilderTests.java b/sdk/core/azure-core/src/test/java/com/azure/core/util/UrlBuilderTests.java index 4b8fe5f4132f..1369a7d561e7 100644 --- a/sdk/core/azure-core/src/test/java/com/azure/core/util/UrlBuilderTests.java +++ b/sdk/core/azure-core/src/test/java/com/azure/core/util/UrlBuilderTests.java @@ -346,8 +346,8 @@ public void portStringWhenPortIsEmpty() { public void portStringWhenPortIsNotEmpty() { final UrlBuilder builder = new UrlBuilder() .setPort(8080); - builder.setPort("123"); - assertEquals(123, builder.getPort()); + builder.setPort("132"); + assertEquals(132, builder.getPort()); } @Test diff --git a/sdk/core/azure-core/src/test/java/com/azure/core/util/UrlTokenizerTests.java b/sdk/core/azure-core/src/test/java/com/azure/core/util/UrlTokenizerTests.java index 50f657c170ca..a82bde22d991 100644 --- a/sdk/core/azure-core/src/test/java/com/azure/core/util/UrlTokenizerTests.java +++ b/sdk/core/azure-core/src/test/java/com/azure/core/util/UrlTokenizerTests.java @@ -85,37 +85,37 @@ public void nextWithSchemeAndHostAndPort() { @Test public void nextWithSchemeAndHostAndPortAndForwardSlash() { - nextTest("ftp://www.bing.com:123/", + nextTest("ftp://www.bing.com:132/", UrlToken.scheme("ftp"), UrlToken.host("www.bing.com"), - UrlToken.port("123"), + UrlToken.port("132"), UrlToken.path("/")); } @Test public void nextWithSchemeAndHostAndPortAndPath() { - nextTest("ftp://www.bing.com:123/a/b/c.txt", + nextTest("ftp://www.bing.com:132/a/b/c.txt", UrlToken.scheme("ftp"), UrlToken.host("www.bing.com"), - UrlToken.port("123"), + UrlToken.port("132"), UrlToken.path("/a/b/c.txt")); } @Test public void nextWithSchemeAndHostAndPortAndQuestionMark() { - nextTest("ftp://www.bing.com:123?", + nextTest("ftp://www.bing.com:132?", UrlToken.scheme("ftp"), UrlToken.host("www.bing.com"), - UrlToken.port("123"), + UrlToken.port("132"), UrlToken.query("")); } @Test public void nextWithSchemeAndHostAndPortAndQuery() { - nextTest("ftp://www.bing.com:123?a=b&c=d", + nextTest("ftp://www.bing.com:132?a=b&c=d", UrlToken.scheme("ftp"), UrlToken.host("www.bing.com"), - UrlToken.port("123"), + UrlToken.port("132"), UrlToken.query("a=b&c=d")); } diff --git a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java index 83c30b89fcb9..fdeb55cd6299 100644 --- a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java +++ b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java @@ -27,7 +27,7 @@ public final class JavaDocCodeSnippets { private String clientId = System.getenv("AZURE_CLIENT_ID"); private String clientSecret = System.getenv("AZURE_CLIENT_SECRET"); private String username = "sampleuser"; - private String password = "Samp1eP@ssw0rd"; + private String password = "fakeCredentialPlaceholder"; /** * Method to insert code snippets for {@link ClientSecretCredential} diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/AzureCliCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/AzureCliCredentialTest.java index a6dd0e84c4af..50bb6ab7dfea 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/AzureCliCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/AzureCliCredentialTest.java @@ -109,7 +109,7 @@ public void azureCliCredentialAuthenticationFailedException() throws Exception { public void testAdditionalTenantNoImpact() { // setup String username = "testuser"; - String password = "P@ssw0rd"; + String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index 9934b1f8f418..7d07a7c7bf8e 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -37,7 +37,7 @@ public class UsernamePasswordCredentialTest { public void testValidUserCredential() throws Exception { // setup String username = "testuser"; - String password = "P@ssw0rd"; + String password = "fakeCredentialPlaceholder"; String token1 = "token1"; String token2 = "token2"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -147,7 +147,7 @@ public void testInvalidUserCredential() throws Exception { public void testInvalidParameters() throws Exception { // setup String username = "testuser"; - String password = "P@ssw0rd"; + String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); OffsetDateTime expiresOn = OffsetDateTime.now(ZoneOffset.UTC).plusHours(1); @@ -185,7 +185,7 @@ public void testInvalidParameters() throws Exception { public void testValidAuthenticate() throws Exception { // setup String username = "testuser"; - String password = "P@ssw0rd"; + String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); OffsetDateTime expiresAt = OffsetDateTime.now(ZoneOffset.UTC).plusHours(1); diff --git a/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultCredentialPolicyTest.java b/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultCredentialPolicyTest.java index acf49427d2d6..d0d1a8b03b22 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultCredentialPolicyTest.java +++ b/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultCredentialPolicyTest.java @@ -98,7 +98,7 @@ public void setup() { this.unauthorizedHttpResponseWithoutHeader = unauthorizedResponseWithoutHeader; this.callContext = plainContext; this.differentScopeContext = differentScopeContext; - this.credential = new BasicAuthenticationCredential("user", "pass"); + this.credential = new BasicAuthenticationCredential("user", "fakeCredentialPlaceholder"); this.testContext = testContext; this.bodyContext = bodyContext; this.bodyFluxContext = bodyFluxContext; diff --git a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/KeyVaultCredentialPolicyTest.java b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/KeyVaultCredentialPolicyTest.java index ef5ce544bc3e..1be7857aee90 100644 --- a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/KeyVaultCredentialPolicyTest.java +++ b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/KeyVaultCredentialPolicyTest.java @@ -98,7 +98,7 @@ public void setup() { this.unauthorizedHttpResponseWithoutHeader = unauthorizedResponseWithoutHeader; this.callContext = plainContext; this.differentScopeContext = differentScopeContext; - this.credential = new BasicAuthenticationCredential("user", "pass"); + this.credential = new BasicAuthenticationCredential("user", "fakeCredentialPlaceholder"); this.testContext = testContext; this.bodyContext = bodyContext; this.bodyFluxContext = bodyFluxContext; diff --git a/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyVaultCredentialPolicyTest.java b/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyVaultCredentialPolicyTest.java index 14e5d2801ab8..7b13fbc2f721 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyVaultCredentialPolicyTest.java +++ b/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyVaultCredentialPolicyTest.java @@ -98,7 +98,7 @@ public void setup() { this.unauthorizedHttpResponseWithoutHeader = unauthorizedResponseWithoutHeader; this.callContext = plainContext; this.differentScopeContext = differentScopeContext; - this.credential = new BasicAuthenticationCredential("user", "pass"); + this.credential = new BasicAuthenticationCredential("user", "fakeCredentialPlaceholder"); this.testContext = testContext; this.bodyContext = bodyContext; this.bodyFluxContext = bodyFluxContext; diff --git a/sdk/keyvault/azure-security-keyvault-secrets/src/test/java/com/azure/security/keyvault/secrets/KeyVaultCredentialPolicyTest.java b/sdk/keyvault/azure-security-keyvault-secrets/src/test/java/com/azure/security/keyvault/secrets/KeyVaultCredentialPolicyTest.java index 5496fe76db50..fe015a1cbf9e 100644 --- a/sdk/keyvault/azure-security-keyvault-secrets/src/test/java/com/azure/security/keyvault/secrets/KeyVaultCredentialPolicyTest.java +++ b/sdk/keyvault/azure-security-keyvault-secrets/src/test/java/com/azure/security/keyvault/secrets/KeyVaultCredentialPolicyTest.java @@ -98,7 +98,7 @@ public void setup() { this.unauthorizedHttpResponseWithoutHeader = unauthorizedResponseWithoutHeader; this.callContext = plainContext; this.differentScopeContext = differentScopeContext; - this.credential = new BasicAuthenticationCredential("user", "pass"); + this.credential = new BasicAuthenticationCredential("user", "fakeCredentialPlaceholder"); this.testContext = testContext; this.bodyContext = bodyContext; this.bodyFluxContext = bodyFluxContext; 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 b8483db62225..0b53d70c68aa 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 @@ -142,7 +142,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw .withNewPrimaryPublicIPAddress(Utils.randomResourceName(azureResourceManager, "empip-", 20)) .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword("12NewPA$$w0rd!") + .withAdminPassword("fakeCredentialPlaceholder") .withSize(VirtualMachineSizeTypes.fromString("Standard_D2a_v4")) .create(); System.out.println("Virtual machine created"); @@ -224,7 +224,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw .withNewPrimaryPublicIPAddress(Utils.randomResourceName(azureResourceManager, "ptnerpip-", 20)) .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword("12NewPA$$w0rd!") + .withAdminPassword("fakeCredentialPlaceholder") .withSize(VirtualMachineSizeTypes.fromString("Standard_D2a_v4")) .create(); System.out.println("Virtual machine created"); diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java index 97ae3f601f92..8fbc6322fd35 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java @@ -54,7 +54,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc virtualMachines.manager().resourceManager().internalContext().randomResourceName("pip", 20)) .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword("12NewPA$$w0rd!") + .withAdminPassword("fakeCredentialPlaceholder") .withSize(VirtualMachineSizeTypes.fromString("Standard_D2a_v4")) .withNewStorageAccount(storageCreatable) .withNewAvailabilitySet(virtualMachines.manager().resourceManager().internalContext().randomResourceName("avset", 10)) diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java index ae367a3180f3..9c1d09c57f65 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java @@ -26,7 +26,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc .withoutPrimaryPublicIPAddress() .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword("12NewPA$$w0rd!") + .withAdminPassword("fakeCredentialPlaceholder") .withUnmanagedDisks() .withNewUnmanagedDataDisk(30) .defineUnmanagedDataDisk("disk2") diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java index 5e69aa7b8379..e118d7d65f9d 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java @@ -30,7 +30,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc .withoutPrimaryPublicIPAddress() .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword("12NewPA$$w0rd!") + .withAdminPassword("fakeCredentialPlaceholder") .withSize(availableSize.name()) // Use the first size .create(); diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java index f7f0e662dd04..1fa7dc45a015 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java @@ -55,7 +55,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc virtualMachines.manager().resourceManager().internalContext().randomResourceName("pip", 20)) .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword("12NewPA$$w0rd!") + .withAdminPassword("fakeCredentialPlaceholder") .withSize(VirtualMachineSizeTypes.fromString("Standard_D2a_v4")) .withNewStorageAccount(storageCreatable) .withNewAvailabilitySet(virtualMachines.manager().resourceManager().internalContext().randomResourceName("avset", 10)) diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java index 89aafff3a160..84d606fa04a3 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java @@ -27,7 +27,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc .withoutPrimaryPublicIPAddress() .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword("12NewPA$$w0rd!") + .withAdminPassword("fakeCredentialPlaceholder") .withUnmanagedDisks() .withNewUnmanagedDataDisk(30) .defineUnmanagedDataDisk("disk2") diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java index f5a8fce3ccc0..5ff4dd859e7b 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java @@ -31,7 +31,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc .withoutPrimaryPublicIPAddress() .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword("12NewPA$$w0rd!") + .withAdminPassword("fakeCredentialPlaceholder") .withSize(availableSize.name()) // Use the first size .create(); diff --git a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/IndexingSyncTests.java b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/IndexingSyncTests.java index a41cb0e0f24e..d4ed6bcd11aa 100644 --- a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/IndexingSyncTests.java +++ b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/IndexingSyncTests.java @@ -105,7 +105,7 @@ public void canIndexWithPascalCaseFields() { List books = new ArrayList<>(); books.add(new Book() - .ISBN("123") + .ISBN("132") .title("Lord of the Rings") .author(new Author() .firstName("J.R.R") @@ -113,7 +113,7 @@ public void canIndexWithPascalCaseFields() { ); List result = client.uploadDocuments(books).getResults(); - this.assertIndexActionSucceeded("123", result.get(0), 201); + this.assertIndexActionSucceeded("132", result.get(0), 201); waitForIndexing(); assertEquals(1L, client.getDocumentCount()); diff --git a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/LookupSyncTests.java b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/LookupSyncTests.java index 21803e2e0f59..61e816c91cc5 100644 --- a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/LookupSyncTests.java +++ b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/LookupSyncTests.java @@ -422,7 +422,7 @@ Hotel prepareEmptyHotel() { } Hotel preparePascalCaseFieldsHotel() { - return new Hotel().hotelId("123").hotelName("Lord of the Rings").description("J.R.R").descriptionFr("Tolkien"); + return new Hotel().hotelId("132").hotelName("Lord of the Rings").description("J.R.R").descriptionFr("Tolkien"); } @SuppressWarnings({"deprecation", "UseOfObsoleteDateTimeApi"}) diff --git a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/SearchDocumentConverterTests.java b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/SearchDocumentConverterTests.java index 0331aca6c6aa..c232e0e2a808 100644 --- a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/SearchDocumentConverterTests.java +++ b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/SearchDocumentConverterTests.java @@ -76,7 +76,7 @@ public void canReadNullValues() { @Test public void canReadPrimitiveTypes() { Map values = new HashMap<>(); - values.put("123", 123); + values.put("132", 132); values.put("9999999999999", 9_999_999_999_999L); values.put("3.25", 3.25); values.put("\"hello\"", "hello"); @@ -264,9 +264,9 @@ public void specialDoublesAreReadAsStrings() { @Test public void dateTimeStringsInArraysAreReadAsDateTime() { - String json = "{ \"field\": [ \"hello\", \"".concat(TEST_DATE_STRING).concat("\", \"123\" ] }}"); + String json = "{ \"field\": [ \"hello\", \"".concat(TEST_DATE_STRING).concat("\", \"132\" ] }}"); SearchDocument expectedDoc = new SearchDocument( - Collections.singletonMap("field", Arrays.asList("hello", TEST_DATE, "123"))); + Collections.singletonMap("field", Arrays.asList("hello", TEST_DATE, "132"))); SearchDocument actualDoc = deserialize(json); assertMapEquals(expectedDoc, actualDoc, false); diff --git a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/SearchSyncTests.java b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/SearchSyncTests.java index 430678bf29b7..52c2f7f4ea31 100644 --- a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/SearchSyncTests.java +++ b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/SearchSyncTests.java @@ -276,7 +276,7 @@ public void canRoundTripNonNullableValueTypes() { Date startEpoch = Date.from(Instant.ofEpochMilli(1275346800000L)); NonNullableModel doc1 = new NonNullableModel() - .key("123") + .key("132") .count(3) .isEnabled(true) .rating(5) @@ -1032,7 +1032,7 @@ String createIndexWithValueTypes() { List> createDocsListWithValueTypes() { Map element1 = new HashMap<>(); - element1.put("Key", "123"); + element1.put("Key", "132"); element1.put("IntValue", 0); Map subElement1 = new HashMap<>(); diff --git a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/CustomAnalyzerSyncTests.java b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/CustomAnalyzerSyncTests.java index 09c67f86437c..76883a5494ac 100644 --- a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/CustomAnalyzerSyncTests.java +++ b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/CustomAnalyzerSyncTests.java @@ -853,7 +853,7 @@ SearchIndex prepareIndexWithAllAnalysisComponentTypes() { .setMaxGram(3), new PatternCaptureTokenFilter(generateName(), Collections.singletonList(".*")) .setPreserveOriginal(false), - new PatternReplaceTokenFilter(generateName(), "abc", "123"), + new PatternReplaceTokenFilter(generateName(), "abc", "132"), new PhoneticTokenFilter(generateName()) .setEncoder(PhoneticEncoder.SOUNDEX) .setOriginalTokensReplaced(false), @@ -897,7 +897,7 @@ SearchIndex prepareIndexWithAllAnalysisComponentTypes() { .setCharFilters(new MappingCharFilter(customCharFilterName.toString(), Collections.singletonList("a => b")), // One custom char filter for CustomeAnalyer above. new MappingCharFilter(generateName(), Arrays.asList("s => $", "S => $")), - new PatternReplaceCharFilter(generateName(), "abc", "123")); + new PatternReplaceCharFilter(generateName(), "abc", "132")); } SearchIndex createIndexWithSpecialDefaults() { diff --git a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/SearchIndexClientBuilderTests.java b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/SearchIndexClientBuilderTests.java index 2c0ee37e6196..be2b3bbc623f 100644 --- a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/SearchIndexClientBuilderTests.java +++ b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/SearchIndexClientBuilderTests.java @@ -39,7 +39,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue; public class SearchIndexClientBuilderTests { - private final AzureKeyCredential searchApiKeyCredential = new AzureKeyCredential("0123"); + private final AzureKeyCredential searchApiKeyCredential = new AzureKeyCredential("fakeCredentialPlaceholder"); private final String searchEndpoint = "https://test.search.windows.net"; private final SearchServiceVersion apiVersion = SearchServiceVersion.V2020_06_30; diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/aad/implementation/graph/UserPrincipalMicrosoftGraphTests.java b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/aad/implementation/graph/UserPrincipalMicrosoftGraphTests.java index 13a4c916d527..d49e86657011 100644 --- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/aad/implementation/graph/UserPrincipalMicrosoftGraphTests.java +++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/aad/implementation/graph/UserPrincipalMicrosoftGraphTests.java @@ -81,7 +81,7 @@ void setup() { properties.getProfile().getEnvironment().setMicrosoftGraphEndpoint(MOCK_MICROSOFT_GRAPH_ENDPOINT); endpoints = new AadAuthorizationServerEndpoints(properties.getProfile().getEnvironment().getActiveDirectoryEndpoint(), properties.getProfile().getTenantId()); clientId = "client"; - clientSecret = "pass"; + clientSecret = "fakeCredentialPlaceholder"; } @Test diff --git a/sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java b/sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java new file mode 100644 index 000000000000..b83fdaf5064b --- /dev/null +++ b/sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.azure.spring.cloud.service.implementation.storage; + +/** + * Fake credential list. + */ +public final class FakeCredentialInTest { + /** + * Fake customer provided key credential. + */ + public static final String FAKE_CUSTOMER_PROVIDED_KEY = + "JdppJP5eH1w/CQ0cx4RGYWoC7NmQ0nmDbYR2PYWSDTXojV9bI1ck0Eh0sUIg8xj4KYj7tv+ZPLICu3BgLt6mMz=="; +} diff --git a/sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/blob/AzureBlobClientBuilderFactoryTests.java b/sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/blob/AzureBlobClientBuilderFactoryTests.java index b12b358b7b4c..7c123824f75e 100644 --- a/sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/blob/AzureBlobClientBuilderFactoryTests.java +++ b/sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/blob/AzureBlobClientBuilderFactoryTests.java @@ -19,6 +19,7 @@ import java.util.List; +import static com.azure.spring.cloud.service.implementation.storage.FakeCredentialInTest.FAKE_CUSTOMER_PROVIDED_KEY; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.anyString; import static org.mockito.Mockito.mock; @@ -34,7 +35,6 @@ class AzureBlobClientBuilderFactoryTests AzureBlobClientBuilderFactoryTests.BlobServiceClientBuilderFactoryExt> { private static final String ENDPOINT = "https://abc.blob.core.windows.net/"; - private static final String CUSTOMER_PROVIDED_KEY = "JdppJP5eH1w/CQ0cx4RGYWoC7NmQ0nmDbYR2PYWSDTXojV9bI1ck0Eh0sUIg8xj4KYj7tv+ZPLICu3BgLt6mMz=="; private static final String CONNECTION_STRING = "BlobEndpoint=https://test.blob.core.windows.net/;" + "QueueEndpoint=https://test.queue.core.windows.net/;FileEndpoint=https://test.file.core.windows.net/;" + "TableEndpoint=https://test.table.core.windows.net/;SharedAccessSignature=sv=2020-08-04" @@ -92,7 +92,7 @@ protected void buildClient(BlobServiceClientBuilder builder) { protected void verifyServicePropertiesConfigured() { AzureStorageBlobTestProperties properties = new AzureStorageBlobTestProperties(); properties.setEndpoint(ENDPOINT); - properties.setCustomerProvidedKey(CUSTOMER_PROVIDED_KEY); + properties.setCustomerProvidedKey(FAKE_CUSTOMER_PROVIDED_KEY); properties.setEncryptionScope("test-scope"); properties.setServiceVersion(BlobServiceVersion.V2019_07_07); diff --git a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java new file mode 100644 index 000000000000..60e663063728 --- /dev/null +++ b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.azure.storage.common; + +/** + * Fake or well known credential list. + */ +public final class FakeCredentialInTest { + /** + * Well known account key value. + */ + public static final String WELL_KNOWN_ACCOUNT_KEY_VALUE = + "95o6TL9jkIjNr6HurD6Xa+zLQ+PX9/VWR8fI2ofHatbrUb8kRJ75B6enwRU3q1OP8fmjghaoxdqnwhN7m3pZow=="; +} diff --git a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/connectionstring/StorageConnectionStringTest.java b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/connectionstring/StorageConnectionStringTest.java index 3d66396394c4..8073da964f38 100644 --- a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/connectionstring/StorageConnectionStringTest.java +++ b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/connectionstring/StorageConnectionStringTest.java @@ -13,13 +13,12 @@ import java.util.Map; import java.util.Set; +import static com.azure.storage.common.FakeCredentialInTest.WELL_KNOWN_ACCOUNT_KEY_VALUE; import static org.junit.jupiter.api.Assertions.assertThrows; public class StorageConnectionStringTest { private final ClientLogger logger = new ClientLogger(StorageConnectionStringTest.class); private static final String ACCOUNT_NAME_VALUE = "contoso"; - private static final String ACCOUNT_KEY_VALUE = - "95o6TL9jkIjNr6HurD6Xa+zLQ+PX9/VWR8fI2ofHatbrUb8kRJ75B6enwRU3q1OP8fmjghaoxdqnwhN7m3pZow=="; private static final String SAS_TOKEN = "sv=2015-07-08&sig=sD3fPKLnFKZUjnSV4qA%2FXoJOqsmDfNfxWcZ7kPtLc0I%3D&spr=https" + "&st=2016-04-12T03%3A24%3A31Z" @@ -112,7 +111,7 @@ private static void assertSasTokensEqual(String left, String right) { public void accountNameKey() { final String connectionString = String.format("DefaultEndpointsProtocol=https;AccountName=%s;AccountKey=%s;", ACCOUNT_NAME_VALUE, - ACCOUNT_KEY_VALUE); + WELL_KNOWN_ACCOUNT_KEY_VALUE); StorageConnectionString storageConnectionString = StorageConnectionString.create(connectionString, logger); Assertions.assertNotNull(storageConnectionString); @@ -149,7 +148,7 @@ public void accountNameKey() { Assertions.assertNotNull(authSettings.getAccount().getName()); Assertions.assertNotNull(authSettings.getAccount().getAccessKey()); Assertions.assertTrue(authSettings.getAccount().getName().equals(ACCOUNT_NAME_VALUE)); - Assertions.assertTrue(authSettings.getAccount().getAccessKey().equals(ACCOUNT_KEY_VALUE)); + Assertions.assertTrue(authSettings.getAccount().getAccessKey().equals(WELL_KNOWN_ACCOUNT_KEY_VALUE)); } @Test @@ -157,7 +156,7 @@ public void customEndpointSuffix() { final String connectionString = String.format("DefaultEndpointsProtocol=https;AccountName=%s;AccountKey=%s;EndpointSuffix=%s", ACCOUNT_NAME_VALUE, - ACCOUNT_KEY_VALUE, + WELL_KNOWN_ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); StorageConnectionString storageConnectionString = StorageConnectionString.create(connectionString, logger); @@ -204,7 +203,7 @@ public void customEndpointSuffix() { Assertions.assertNotNull(authSettings.getAccount().getName()); Assertions.assertNotNull(authSettings.getAccount().getAccessKey()); Assertions.assertTrue(authSettings.getAccount().getName().equals(ACCOUNT_NAME_VALUE)); - Assertions.assertTrue(authSettings.getAccount().getAccessKey().equals(ACCOUNT_KEY_VALUE)); + Assertions.assertTrue(authSettings.getAccount().getAccessKey().equals(WELL_KNOWN_ACCOUNT_KEY_VALUE)); } @Test @@ -215,7 +214,7 @@ public void explicitEndpointsAndAccountName() { blobEndpointStr, fileEndpointStr, ACCOUNT_NAME_VALUE, - ACCOUNT_KEY_VALUE); + WELL_KNOWN_ACCOUNT_KEY_VALUE); StorageConnectionString storageConnectionString = StorageConnectionString.create(connectionString, logger); Assertions.assertNotNull(storageConnectionString); @@ -250,7 +249,7 @@ public void explicitEndpointsAndAccountName() { Assertions.assertNotNull(authSettings.getAccount().getName()); Assertions.assertNotNull(authSettings.getAccount().getAccessKey()); Assertions.assertTrue(authSettings.getAccount().getName().equals(ACCOUNT_NAME_VALUE)); - Assertions.assertTrue(authSettings.getAccount().getAccessKey().equals(ACCOUNT_KEY_VALUE)); + Assertions.assertTrue(authSettings.getAccount().getAccessKey().equals(WELL_KNOWN_ACCOUNT_KEY_VALUE)); } @Test @@ -294,7 +293,7 @@ public void skipEmptyEntries() { // connection string with empty entries (;; after protocol) final String connectionString = String.format("DefaultEndpointsProtocol=https;;;AccountName=%s;AccountKey=%s; EndpointSuffix=%s", - ACCOUNT_NAME_VALUE, ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); + ACCOUNT_NAME_VALUE, WELL_KNOWN_ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); StorageConnectionString.create(connectionString, logger); } @@ -312,7 +311,7 @@ public void missingEqualDelimiter() { // A connection string with missing equal symbol between AccountKey and it's value final String connectionString = String.format("DefaultEndpointsProtocol=https;AccountName=%s;AccountKey%s;EndpointSuffix=%s", - ACCOUNT_NAME_VALUE, ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); + ACCOUNT_NAME_VALUE, WELL_KNOWN_ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); assertThrows(IllegalArgumentException.class, () -> StorageConnectionString.create(connectionString, logger)); } @@ -321,7 +320,7 @@ public void missingKey() { // A connection string with missing 'AccountName' key for it's value final String connectionString = String.format("DefaultEndpointsProtocol=https;=%s;AccountKey=%s;EndpointSuffix=%s", - ACCOUNT_NAME_VALUE, ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); + ACCOUNT_NAME_VALUE, WELL_KNOWN_ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); assertThrows(IllegalArgumentException.class, () -> StorageConnectionString.create(connectionString, logger)); } @@ -330,7 +329,7 @@ public void missingValue() { // A connection string with missing value for 'AccountName' key final String connectionString = String.format("DefaultEndpointsProtocol=https;AccountName=;AccountKey%s;EndpointSuffix=%s", - ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); + WELL_KNOWN_ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); assertThrows(IllegalArgumentException.class, () -> StorageConnectionString.create(connectionString, logger)); } @@ -339,7 +338,7 @@ public void missingKeyValue() { // a connection string with key and value missing for equal (=) delimiter final String connectionString = String.format("DefaultEndpointsProtocol=https;=;AccountName=%s;AccountKey%s;EndpointSuffix=%s", - ACCOUNT_NAME_VALUE, ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); + ACCOUNT_NAME_VALUE, WELL_KNOWN_ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); assertThrows(IllegalArgumentException.class, () -> StorageConnectionString.create(connectionString, logger)); } @@ -347,7 +346,7 @@ public void missingKeyValue() { public void missingAccountKey() { final String connectionString = String.format("DefaultEndpointsProtocol=https;AccountName=%s;%s;EndpointSuffix=%s", - ACCOUNT_NAME_VALUE, ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); + ACCOUNT_NAME_VALUE, WELL_KNOWN_ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); assertThrows(IllegalArgumentException.class, () -> StorageConnectionString.create(connectionString, logger)); } @@ -362,7 +361,7 @@ public void sasTokenAccountKeyMutuallyExclusive() { fileEndpointStr, SAS_TOKEN, ACCOUNT_NAME_VALUE, - ACCOUNT_KEY_VALUE); + WELL_KNOWN_ACCOUNT_KEY_VALUE); assertThrows(IllegalArgumentException.class, () -> StorageConnectionString.create(connectionString, logger)); } @@ -385,7 +384,7 @@ public void overrideDefaultProtocolToHttp() { final String connectionString = String.format("DefaultEndpointsProtocol=http;AccountName=%s;AccountKey=%s;EndpointSuffix=%s", ACCOUNT_NAME_VALUE, - ACCOUNT_KEY_VALUE, + WELL_KNOWN_ACCOUNT_KEY_VALUE, CHINA_CLOUD_ENDPOINT_SUFFIX); StorageConnectionString storageConnectionString = StorageConnectionString.create(connectionString, logger); From 96af8688ca79124db4efba863ed0f787004e0bc2 Mon Sep 17 00:00:00 2001 From: shafang Date: Mon, 24 Oct 2022 23:11:26 -0700 Subject: [PATCH 04/21] replace the credScan failed credential --- eng/CredScanSuppression.json | 7 ++++++ .../SAMPLE.md | 4 ++-- .../SourceControlCreateOrUpdateSamples.java | 2 +- .../generated/SourceControlUpdateSamples.java | 2 +- .../azure/core/http/ProxyOptionsTests.java | 2 +- .../credential/JavaDocCodeSnippets.java | 2 +- .../identity/AzureCliCredentialTest.java | 3 --- .../UsernamePasswordCredentialTest.java | 22 +++++++++---------- .../CertificateClientTestBase.java | 10 ++++----- .../elevation/ElevationClientTestBase.java | 2 +- .../com/azure/maps/elevation/TestUtils.java | 4 ++-- .../GeolocationClientTestBase.java | 2 +- .../com/azure/maps/geolocation/TestUtils.java | 4 ++-- .../maps/render/MapsRenderClientTestBase.java | 2 +- .../java/com/azure/maps/render/TestUtils.java | 3 +-- .../java/com/azure/maps/search/TestUtils.java | 4 ++-- .../com/azure/maps/timezone/TestUtils.java | 6 ++--- .../maps/timezone/TimeZoneClientTestBase.java | 4 ++-- .../NotificationHookTestBase.java | 4 ++-- .../SAMPLE.md | 4 ++-- .../DataConnectorsConnectSamples.java | 2 +- ...reCloudFoundryServiceApplicationTests.java | 4 ++-- .../test/resources/cloudfoundry/vcap2.json | 3 +-- .../test/resources/cloudfoundry/vcap3.json | 3 +-- 24 files changed, 53 insertions(+), 52 deletions(-) diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index d87c4c3eb0be..372720523a33 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -23,6 +23,13 @@ ], "_justification": "Javadoc in azure-resourcemanager" }, + { + "placeholder": [ + "h2AllowImplicitFlow", + "h2Permissions" + ], + "_justification": "Javadoc in azure resourcemanagerhybrid" + }, { "file":[ "eng/common/testproxy/dotnet-devcert.pfx", diff --git a/sdk/automation/azure-resourcemanager-automation/SAMPLE.md b/sdk/automation/azure-resourcemanager-automation/SAMPLE.md index ea776e4a70ed..4439ab587de3 100644 --- a/sdk/automation/azure-resourcemanager-automation/SAMPLE.md +++ b/sdk/automation/azure-resourcemanager-automation/SAMPLE.md @@ -3938,7 +3938,7 @@ public final class SourceControlCreateOrUpdateSamples { .withSourceType(SourceType.VSO_GIT) .withSecurityToken( new SourceControlSecurityTokenProperties() - .withAccessToken("3a326f7a0dcd343ea58fee21f2fd5fb4c1234567") + .withAccessToken("fakeTokenPlaceholder") .withTokenType(TokenType.PERSONAL_ACCESS_TOKEN)) .withDescription("my description") .create(); @@ -4041,7 +4041,7 @@ public final class SourceControlUpdateSamples { .withPublishRunbook(true) .withSecurityToken( new SourceControlSecurityTokenProperties() - .withAccessToken("3a326f7a0dcd343ea58fee21f2fd5fb4c1234567") + .withAccessToken("fakeTokenPlaceholder") .withTokenType(TokenType.PERSONAL_ACCESS_TOKEN)) .withDescription("my description") .apply(); diff --git a/sdk/automation/azure-resourcemanager-automation/src/samples/java/com/azure/resourcemanager/automation/generated/SourceControlCreateOrUpdateSamples.java b/sdk/automation/azure-resourcemanager-automation/src/samples/java/com/azure/resourcemanager/automation/generated/SourceControlCreateOrUpdateSamples.java index 6279ea170b6d..43d72adfc74a 100644 --- a/sdk/automation/azure-resourcemanager-automation/src/samples/java/com/azure/resourcemanager/automation/generated/SourceControlCreateOrUpdateSamples.java +++ b/sdk/automation/azure-resourcemanager-automation/src/samples/java/com/azure/resourcemanager/automation/generated/SourceControlCreateOrUpdateSamples.java @@ -31,7 +31,7 @@ public static void createOrUpdateASourceControl(com.azure.resourcemanager.automa .withSourceType(SourceType.VSO_GIT) .withSecurityToken( new SourceControlSecurityTokenProperties() - .withAccessToken("3a326f7a0dcd343ea58fee21f2fd5fb4c1234567") + .withAccessToken("fakeTokenPlaceholder") .withTokenType(TokenType.PERSONAL_ACCESS_TOKEN)) .withDescription("my description") .create(); diff --git a/sdk/automation/azure-resourcemanager-automation/src/samples/java/com/azure/resourcemanager/automation/generated/SourceControlUpdateSamples.java b/sdk/automation/azure-resourcemanager-automation/src/samples/java/com/azure/resourcemanager/automation/generated/SourceControlUpdateSamples.java index 3a137b89dfe2..d63ad8535b1d 100644 --- a/sdk/automation/azure-resourcemanager-automation/src/samples/java/com/azure/resourcemanager/automation/generated/SourceControlUpdateSamples.java +++ b/sdk/automation/azure-resourcemanager-automation/src/samples/java/com/azure/resourcemanager/automation/generated/SourceControlUpdateSamples.java @@ -33,7 +33,7 @@ public static void updateASourceControl(com.azure.resourcemanager.automation.Aut .withPublishRunbook(true) .withSecurityToken( new SourceControlSecurityTokenProperties() - .withAccessToken("3a326f7a0dcd343ea58fee21f2fd5fb4c1234567") + .withAccessToken("fakeTokenPlaceholder") .withTokenType(TokenType.PERSONAL_ACCESS_TOKEN)) .withDescription("my description") .apply(); diff --git a/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java b/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java index 8611b46f5d39..5bbc77fbc854 100644 --- a/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java +++ b/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java @@ -41,7 +41,7 @@ public class ProxyOptionsTests { private static final String HTTP = "http"; private static final String PROXY_HOST = "localhost"; - private static final String PROXY_USER = "user"; + private static final String PROXY_USER = "fakeProxyUserPlaceholder"; private static final String PROXY_PASSWORD = "fakeCredentialPlaceholder"; private static final String NON_PROXY_HOSTS = "notlocalhost"; diff --git a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java index fdeb55cd6299..21007e31730e 100644 --- a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java +++ b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java @@ -26,7 +26,7 @@ public final class JavaDocCodeSnippets { private String tenantId = System.getenv("AZURE_TENANT_ID"); private String clientId = System.getenv("AZURE_CLIENT_ID"); private String clientSecret = System.getenv("AZURE_CLIENT_SECRET"); - private String username = "sampleuser"; + private String username = "fakeUserNamePlaceholder"; private String password = "fakeCredentialPlaceholder"; /** diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/AzureCliCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/AzureCliCredentialTest.java index 50bb6ab7dfea..05b3e9b39fe6 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/AzureCliCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/AzureCliCredentialTest.java @@ -108,9 +108,6 @@ public void azureCliCredentialAuthenticationFailedException() throws Exception { @Test public void testAdditionalTenantNoImpact() { // setup - String username = "testuser"; - String password = "fakeCredentialPlaceholder"; - TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index 7d07a7c7bf8e..fbdb5df312d4 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -36,7 +36,7 @@ public class UsernamePasswordCredentialTest { @Test public void testValidUserCredential() throws Exception { // setup - String username = "testuser"; + String username = "fakeUserNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; String token2 = "token2"; @@ -105,7 +105,7 @@ public void testValidUserCredential() throws Exception { @Test public void testInvalidUserCredential() throws Exception { // setup - String username = "testuser"; + String username = "fakeUserNamePlaceholder"; String badPassword = "Password"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -146,7 +146,7 @@ public void testInvalidUserCredential() throws Exception { @Test public void testInvalidParameters() throws Exception { // setup - String username = "testuser"; + String username = "fakeUserNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -184,7 +184,7 @@ public void testInvalidParameters() throws Exception { @Test public void testValidAuthenticate() throws Exception { // setup - String username = "testuser"; + String username = "fakeUserNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -202,7 +202,7 @@ public void testValidAuthenticate() throws Exception { StepVerifier.create(credential.authenticate(request1)) .expectNextMatches(authenticationRecord -> authenticationRecord.getAuthority() .equals("http://login.microsoftonline.com") - && authenticationRecord.getUsername().equals("testuser") + && authenticationRecord.getUsername().equals("fakeUserNamePlaceholder") && authenticationRecord.getHomeAccountId() != null) .verifyComplete(); Assert.assertNotNull(identityClientMock); @@ -212,8 +212,8 @@ public void testValidAuthenticate() throws Exception { @Test public void testAdditionalTenantNoImpact() { // setup - String username = "testuser"; - String password = "P@ssw0rd"; + String username = "fakeUserNamePlaceholder"; + String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); @@ -229,8 +229,8 @@ public void testAdditionalTenantNoImpact() { @Test public void testInvalidMultiTenantAuth() { // setup - String username = "testuser"; - String password = "P@ssw0rd"; + String username = "fakeUserNamePlaceholder"; + String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); @@ -246,8 +246,8 @@ public void testInvalidMultiTenantAuth() { @Test public void testValidMultiTenantAuth() { // setup - String username = "testuser"; - String password = "P@ssw0rd"; + String username = "fakeUserNamePlaceholder"; + String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); diff --git a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java index b6c8231a3765..2030801d7a7d 100644 --- a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java +++ b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java @@ -384,11 +384,11 @@ void updateIssuerRunner(BiConsumer testRun .setFirstName("otherFirst") .setLastName("otherLast") .setEmail("otherFirst.otherLast@hotmail.com") - .setPhone("67890"))) + .setPhone("fakePhoneNumberPlaceholder"))) .setAccountId("otherIssuerAccountId") .setEnabled(false) .setOrganizationId("otherOrgId") - .setPassword("test456"); + .setPassword("test465"); testRunner.accept(certificateIssuer, issuerForUpdate); } @@ -457,7 +457,7 @@ void listDeletedCertificatesRunner(Consumer> testRunner) { void importCertificateRunner(Consumer testRunner) { String certificateContent = "MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ"; - String certificatePassword = "123"; + String certificatePassword = "132"; String certificateName = testResourceNamer.randomName("importCertPkcs", 25); HashMap tags = new HashMap<>(); @@ -517,11 +517,11 @@ CertificateIssuer setupIssuer(String issuerName) { .setFirstName("first") .setLastName("last") .setEmail("first.last@hotmail.com") - .setPhone("12345"))) + .setPhone("fakePhoneNumberPlaceholder"))) .setAccountId("issuerAccountId") .setEnabled(true) .setOrganizationId("orgId") - .setPassword("test123"); + .setPassword("test132"); } String toHexString(byte[] x5t) { diff --git a/sdk/maps/azure-maps-elevation/src/test/java/com/azure/maps/elevation/ElevationClientTestBase.java b/sdk/maps/azure-maps-elevation/src/test/java/com/azure/maps/elevation/ElevationClientTestBase.java index 9f56d754fa79..b218cd451ec6 100644 --- a/sdk/maps/azure-maps-elevation/src/test/java/com/azure/maps/elevation/ElevationClientTestBase.java +++ b/sdk/maps/azure-maps-elevation/src/test/java/com/azure/maps/elevation/ElevationClientTestBase.java @@ -28,7 +28,7 @@ import com.azure.maps.elevation.models.ElevationResult; public class ElevationClientTestBase extends TestBase { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; private final String endpoint = Configuration.getGlobalConfiguration().get("API-LEARN_ENDPOINT"); Duration durationTestMode; diff --git a/sdk/maps/azure-maps-elevation/src/test/java/com/azure/maps/elevation/TestUtils.java b/sdk/maps/azure-maps-elevation/src/test/java/com/azure/maps/elevation/TestUtils.java index c697fe3439f3..f52ac4b772ef 100644 --- a/sdk/maps/azure-maps-elevation/src/test/java/com/azure/maps/elevation/TestUtils.java +++ b/sdk/maps/azure-maps-elevation/src/test/java/com/azure/maps/elevation/TestUtils.java @@ -22,7 +22,7 @@ import org.junit.jupiter.params.provider.Arguments; public class TestUtils { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; public static final Duration DEFAULT_POLL_INTERVAL = Duration.ofSeconds(30); /** @@ -93,7 +93,7 @@ static ElevationResult getExpectedPostDataForPolyline() throws IOException { SerializerEncoding.JSON); } - // Code referenced from + // Code referenced from // https://www.techiedelight.com/convert-inputstream-byte-array-java/#:~:text=Convert%20InputStream%20to%20byte%20array%20in%20Java%201,Commons%20IO%20...%204%204.%20Using%20sun.misc.IOUtils%20 public static byte[] toByteArray(InputStream in) throws IOException { ByteArrayOutputStream os = new ByteArrayOutputStream(); diff --git a/sdk/maps/azure-maps-geolocation/src/test/java/com/azure/maps/geolocation/GeolocationClientTestBase.java b/sdk/maps/azure-maps-geolocation/src/test/java/com/azure/maps/geolocation/GeolocationClientTestBase.java index 400d353dc197..1ead14e7eb3e 100644 --- a/sdk/maps/azure-maps-geolocation/src/test/java/com/azure/maps/geolocation/GeolocationClientTestBase.java +++ b/sdk/maps/azure-maps-geolocation/src/test/java/com/azure/maps/geolocation/GeolocationClientTestBase.java @@ -28,7 +28,7 @@ import com.azure.maps.geolocation.models.IpAddressToLocationResult; public class GeolocationClientTestBase extends TestBase { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; private final String endpoint = Configuration.getGlobalConfiguration().get("API-LEARN_ENDPOINT"); Duration durationTestMode; diff --git a/sdk/maps/azure-maps-geolocation/src/test/java/com/azure/maps/geolocation/TestUtils.java b/sdk/maps/azure-maps-geolocation/src/test/java/com/azure/maps/geolocation/TestUtils.java index a45bf2bdae1b..562d0731bef0 100644 --- a/sdk/maps/azure-maps-geolocation/src/test/java/com/azure/maps/geolocation/TestUtils.java +++ b/sdk/maps/azure-maps-geolocation/src/test/java/com/azure/maps/geolocation/TestUtils.java @@ -22,7 +22,7 @@ import org.junit.jupiter.params.provider.Arguments; public class TestUtils { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; public static final Duration DEFAULT_POLL_INTERVAL = Duration.ofSeconds(30); /** @@ -53,7 +53,7 @@ static IpAddressToLocationResult getExpectedLocation() throws IOException { SerializerEncoding.JSON); } - // Code referenced from + // Code referenced from // https://www.techiedelight.com/convert-inputstream-byte-array-java/#:~:text=Convert%20InputStream%20to%20byte%20array%20in%20Java%201,Commons%20IO%20...%204%204.%20Using%20sun.misc.IOUtils%20 public static byte[] toByteArray(InputStream in) throws IOException { ByteArrayOutputStream os = new ByteArrayOutputStream(); diff --git a/sdk/maps/azure-maps-render/src/test/java/com/azure/maps/render/MapsRenderClientTestBase.java b/sdk/maps/azure-maps-render/src/test/java/com/azure/maps/render/MapsRenderClientTestBase.java index 7462e9a2f089..76728be3c696 100644 --- a/sdk/maps/azure-maps-render/src/test/java/com/azure/maps/render/MapsRenderClientTestBase.java +++ b/sdk/maps/azure-maps-render/src/test/java/com/azure/maps/render/MapsRenderClientTestBase.java @@ -34,7 +34,7 @@ import com.azure.maps.render.models.MapTileset; public class MapsRenderClientTestBase extends TestBase { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; private final String endpoint = Configuration.getGlobalConfiguration().get("API-LEARN_ENDPOINT"); Duration durationTestMode; diff --git a/sdk/maps/azure-maps-render/src/test/java/com/azure/maps/render/TestUtils.java b/sdk/maps/azure-maps-render/src/test/java/com/azure/maps/render/TestUtils.java index 046fc2be4d37..01496eadbbc5 100644 --- a/sdk/maps/azure-maps-render/src/test/java/com/azure/maps/render/TestUtils.java +++ b/sdk/maps/azure-maps-render/src/test/java/com/azure/maps/render/TestUtils.java @@ -27,7 +27,6 @@ import org.junit.jupiter.params.provider.Arguments; public class TestUtils { - static final String FAKE_API_KEY = "1234567890"; public static final Duration DEFAULT_POLL_INTERVAL = Duration.ofSeconds(30); static MapTileset getExpectedMapTileset() throws IOException { @@ -46,7 +45,7 @@ static MapAttribution getExpectedMapAttribution() throws IOException { JsonSerializer jsonProvider = JsonSerializerProviders.createInstance(true); is.close(); return jsonProvider.deserializeFromBytes(data, TypeReference.createInstance(MapAttribution.class)); - + } static CopyrightCaption getExpectedCopyrightCaption() throws IOException { diff --git a/sdk/maps/azure-maps-search/src/test/java/com/azure/maps/search/TestUtils.java b/sdk/maps/azure-maps-search/src/test/java/com/azure/maps/search/TestUtils.java index 3846299d5fcc..bd66c0fbe21b 100644 --- a/sdk/maps/azure-maps-search/src/test/java/com/azure/maps/search/TestUtils.java +++ b/sdk/maps/azure-maps-search/src/test/java/com/azure/maps/search/TestUtils.java @@ -39,10 +39,10 @@ public class TestUtils { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; public static final Duration DEFAULT_POLL_INTERVAL = Duration.ofSeconds(30); - static MapsPolygon getPolygon(InputStream is) throws IOException { + static MapsPolygon getPolygon(InputStream is) throws IOException { JsonSerializer serializer = JsonSerializerProviders.createInstance(true); TypeReference interimType = new TypeReference() { }; byte[] data = null; diff --git a/sdk/maps/azure-maps-timezone/src/test/java/com/azure/maps/timezone/TestUtils.java b/sdk/maps/azure-maps-timezone/src/test/java/com/azure/maps/timezone/TestUtils.java index afb8abf039a9..b194a72eef4a 100644 --- a/sdk/maps/azure-maps-timezone/src/test/java/com/azure/maps/timezone/TestUtils.java +++ b/sdk/maps/azure-maps-timezone/src/test/java/com/azure/maps/timezone/TestUtils.java @@ -30,7 +30,7 @@ import org.junit.jupiter.params.provider.Arguments; public class TestUtils { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; public static final Duration DEFAULT_POLL_INTERVAL = Duration.ofSeconds(30); /** @@ -70,7 +70,7 @@ static TimeZoneResult getExpectedTimezoneByCoordinates() throws IOException { return jacksonAdapter.deserialize(data, interimType.getJavaType(), SerializerEncoding.JSON); } - + static List getExpectedWindowsTimezoneIds() throws IOException { InputStream is = ClassLoader.getSystemResourceAsStream("getwindowstimezonesids.json"); String jsonArrayString = new BufferedReader(new InputStreamReader(is, StandardCharsets.UTF_8)).lines().collect(Collectors.joining("\n")); @@ -123,7 +123,7 @@ static List getExpectedConvertWindowsTimezoneToIana() throws IOException return expectedResult; } - // Code referenced from + // Code referenced from // https://www.techiedelight.com/convert-inputstream-byte-array-java/#:~:text=Convert%20InputStream%20to%20byte%20array%20in%20Java%201,Commons%20IO%20...%204%204.%20Using%20sun.misc.IOUtils%20 public static byte[] toByteArray(InputStream in) throws IOException { ByteArrayOutputStream os = new ByteArrayOutputStream(); diff --git a/sdk/maps/azure-maps-timezone/src/test/java/com/azure/maps/timezone/TimeZoneClientTestBase.java b/sdk/maps/azure-maps-timezone/src/test/java/com/azure/maps/timezone/TimeZoneClientTestBase.java index 987f9e534b24..f9579b17f1ce 100644 --- a/sdk/maps/azure-maps-timezone/src/test/java/com/azure/maps/timezone/TimeZoneClientTestBase.java +++ b/sdk/maps/azure-maps-timezone/src/test/java/com/azure/maps/timezone/TimeZoneClientTestBase.java @@ -31,7 +31,7 @@ import com.azure.maps.timezone.models.TimeZoneWindows; public class TimeZoneClientTestBase extends TestBase { - static final String FAKE_API_KEY = "1234567890"; + static final String FAKE_API_KEY = "fakeKeyPlaceholder"; private final String endpoint = Configuration.getGlobalConfiguration().get("API-LEARN_ENDPOINT"); Duration durationTestMode; @@ -87,7 +87,7 @@ HttpPipeline getHttpPipeline(HttpClient httpClient) { .policies(policies.toArray(new HttpPipelinePolicy[0])) .httpClient(httpClient == null ? interceptorManager.getPlaybackClient() : httpClient) .build(); - + return pipeline; } diff --git a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java index 5c6cf5715c27..3fc196b1b267 100644 --- a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java +++ b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java @@ -65,8 +65,8 @@ protected static class CreateWebHookInput { String endpoint = "https://httpbin.org/post"; String description = "alert_us!"; String externalLink = "https://github.com/Azure/azure-sdk-for-java/wiki"; - String userName = "test"; - String password = "testpwd!@#"; + String userName = "fakeUserNamePlaceholder"; + String password = "fakeCredentialPlaceholder"; HttpHeaders httpHeaders = new HttpHeaders() .put("x-contoso-id", "123") .put("x-contoso-name", "contoso"); diff --git a/sdk/securityinsights/azure-resourcemanager-securityinsights/SAMPLE.md b/sdk/securityinsights/azure-resourcemanager-securityinsights/SAMPLE.md index dec6f55e9756..de287165b2a0 100644 --- a/sdk/securityinsights/azure-resourcemanager-securityinsights/SAMPLE.md +++ b/sdk/securityinsights/azure-resourcemanager-securityinsights/SAMPLE.md @@ -1505,7 +1505,7 @@ public final class DataConnectorsConnectSamples { "316ec55e-7138-4d63-ab18-90c8a60fd1c8", new DataConnectorConnectBody() .withKind(ConnectAuthKind.APIKEY) - .withApiKey("123456789") + .withApiKey("fakeKeyPlaceholder") .withDataCollectionEndpoint("https://test.eastus.ingest.monitor.azure.com") .withDataCollectionRuleImmutableId("dcr-34adsj9o7d6f9de204478b9cgb43b631") .withOutputStream("Custom-MyTableRawData") @@ -1540,7 +1540,7 @@ public final class DataConnectorsConnectSamples { "316ec55e-7138-4d63-ab18-90c8a60fd1c8", new DataConnectorConnectBody() .withKind(ConnectAuthKind.APIKEY) - .withApiKey("123456789") + .withApiKey("fakeKeyPlaceholder") .withRequestConfigUserInputValues( Arrays .asList( diff --git a/sdk/securityinsights/azure-resourcemanager-securityinsights/src/samples/java/com/azure/resourcemanager/securityinsights/generated/DataConnectorsConnectSamples.java b/sdk/securityinsights/azure-resourcemanager-securityinsights/src/samples/java/com/azure/resourcemanager/securityinsights/generated/DataConnectorsConnectSamples.java index 3754a2ecfb7a..f9b16d575a0a 100644 --- a/sdk/securityinsights/azure-resourcemanager-securityinsights/src/samples/java/com/azure/resourcemanager/securityinsights/generated/DataConnectorsConnectSamples.java +++ b/sdk/securityinsights/azure-resourcemanager-securityinsights/src/samples/java/com/azure/resourcemanager/securityinsights/generated/DataConnectorsConnectSamples.java @@ -67,7 +67,7 @@ public static void connectAnAPIPollingDataConnector( "316ec55e-7138-4d63-ab18-90c8a60fd1c8", new DataConnectorConnectBody() .withKind(ConnectAuthKind.APIKEY) - .withApiKey("123456789") + .withApiKey("fakeKeyPlaceholder") .withRequestConfigUserInputValues( Arrays .asList( diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/cloudfoundry/environment/AzureCloudFoundryServiceApplicationTests.java b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/cloudfoundry/environment/AzureCloudFoundryServiceApplicationTests.java index 933eb1c0667b..a3468fdc3331 100644 --- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/cloudfoundry/environment/AzureCloudFoundryServiceApplicationTests.java +++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/cloudfoundry/environment/AzureCloudFoundryServiceApplicationTests.java @@ -91,7 +91,7 @@ public void testVcapSingleServiceWithNulls() throws IOException { assertEquals("dbs/ZFxCAA==/", config.getCredentials().get("documentdb_database_link")); assertEquals("https://hostname:443/", config.getCredentials().get("documentdb_host_endpoint")); assertEquals( - "3becR7JFnWamMvGwWYWWTV4WpeNhN8tOzJ74yjAxPKDpx65q2lYz60jt8WXU6HrIKrAIwhs0Hglf0123456789==", + "fakeCredentialPlaceholder", config.getCredentials().get("documentdb_master_key")); } catch (IOException e) { LOG.error("Error reading json file", e); @@ -127,7 +127,7 @@ public void testVcapUserProvidedService() throws IOException { assertEquals("dbs/ZFxCAA==/", config.getCredentials().get("documentdb_database_link")); assertEquals("https://hostname:443/", config.getCredentials().get("documentdb_host_endpoint")); assertEquals( - "3becR7JFnWamMvGwWYWWTV4WpeNhN8tOzJ74yjAxPKDpx65q2lYz60jt8WXU6HrIKrAIwhs0Hglf0123456789==", + "fakeCredentialPlaceholder", config.getCredentials().get("documentdb_master_key")); } catch (IOException e) { LOG.error("Error reading json file", e); diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/resources/cloudfoundry/vcap2.json b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/resources/cloudfoundry/vcap2.json index 454f12c3c4bc..fbc837979445 100644 --- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/resources/cloudfoundry/vcap2.json +++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/resources/cloudfoundry/vcap2.json @@ -5,7 +5,7 @@ "documentdb_database_id": "docdb123mj", "documentdb_database_link": "dbs/ZFxCAA==/", "documentdb_host_endpoint": "https://hostname:443/", - "documentdb_master_key": "3becR7JFnWamMvGwWYWWTV4WpeNhN8tOzJ74yjAxPKDpx65q2lYz60jt8WXU6HrIKrAIwhs0Hglf0123456789==" + "documentdb_master_key": "fakeCredentialPlaceholder" }, "label": "azure-documentdb", "name": "mydocumentdb", @@ -17,4 +17,3 @@ } ] } - \ No newline at end of file diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/resources/cloudfoundry/vcap3.json b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/resources/cloudfoundry/vcap3.json index 563d4e3da258..96fb0dc5b546 100644 --- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/resources/cloudfoundry/vcap3.json +++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/resources/cloudfoundry/vcap3.json @@ -7,7 +7,7 @@ "documentdb_database_id": "docdb123mj", "documentdb_database_link": "dbs/ZFxCAA==/", "documentdb_host_endpoint": "https://hostname:443/", - "documentdb_master_key": "3becR7JFnWamMvGwWYWWTV4WpeNhN8tOzJ74yjAxPKDpx65q2lYz60jt8WXU6HrIKrAIwhs0Hglf0123456789==" + "documentdb_master_key": "fakeCredentialPlaceholder" }, "label": "user-provided", "name": "mydocumentdb", @@ -17,4 +17,3 @@ } ] } - \ No newline at end of file From 713a4b4c994bdf1fad4cef508b24a94e500a0f2a Mon Sep 17 00:00:00 2001 From: shafang Date: Tue, 25 Oct 2022 11:13:35 -0700 Subject: [PATCH 05/21] more updates --- sdk/resourcemanager/docs/SAMPLE.md | 4 ++-- .../generated/DataConnectorsConnectSamples.java | 2 +- .../azure/storage/blob/FakeCredentialInTest.java | 14 ++++++++++++++ .../azure/storage/common/FakeCredentialInTest.java | 7 ++++++- .../StorageConnectionStringTest.java | 3 ++- .../azure/storage/FakeCredentialInTest.groovy | 2 +- .../microsoft/azure/storage/blob/HelperTest.groovy | 4 ++-- 7 files changed, 28 insertions(+), 8 deletions(-) create mode 100644 sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java diff --git a/sdk/resourcemanager/docs/SAMPLE.md b/sdk/resourcemanager/docs/SAMPLE.md index 11a175b52ea9..569ed5acad55 100644 --- a/sdk/resourcemanager/docs/SAMPLE.md +++ b/sdk/resourcemanager/docs/SAMPLE.md @@ -354,8 +354,8 @@ You can create a SQL server instance by using a `define() … create()` method c SqlServer sqlServer = azure.sqlServers().define(sqlServerName) .withRegion(Region.US_EAST) .withNewResourceGroup(rgName) - .withAdministratorLogin("adminlogin123") - .withAdministratorPassword("myS3cureP@ssword") + .withAdministratorLogin("fakeAdminLoginPlaceholder") + .withAdministratorPassword("fakeCredentialPlaceholder") .withNewFirewallRule("10.0.0.1") .withNewFirewallRule("10.2.0.1", "10.2.0.10") .create(); diff --git a/sdk/securityinsights/azure-resourcemanager-securityinsights/src/samples/java/com/azure/resourcemanager/securityinsights/generated/DataConnectorsConnectSamples.java b/sdk/securityinsights/azure-resourcemanager-securityinsights/src/samples/java/com/azure/resourcemanager/securityinsights/generated/DataConnectorsConnectSamples.java index f9b16d575a0a..d00218190776 100644 --- a/sdk/securityinsights/azure-resourcemanager-securityinsights/src/samples/java/com/azure/resourcemanager/securityinsights/generated/DataConnectorsConnectSamples.java +++ b/sdk/securityinsights/azure-resourcemanager-securityinsights/src/samples/java/com/azure/resourcemanager/securityinsights/generated/DataConnectorsConnectSamples.java @@ -32,7 +32,7 @@ public static void connectAnAPIPollingV2LogsDataConnector( "316ec55e-7138-4d63-ab18-90c8a60fd1c8", new DataConnectorConnectBody() .withKind(ConnectAuthKind.APIKEY) - .withApiKey("123456789") + .withApiKey("fakeKeyPlaceholder") .withDataCollectionEndpoint("https://test.eastus.ingest.monitor.azure.com") .withDataCollectionRuleImmutableId("dcr-34adsj9o7d6f9de204478b9cgb43b631") .withOutputStream("Custom-MyTableRawData") diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java new file mode 100644 index 000000000000..5ca926c3122f --- /dev/null +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java @@ -0,0 +1,14 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.azure.storage.blob; + +/** + * Fake credential shared in Tests + */ +class FakeCredentialInTest { + /** + * Fake Storage SAS signature value used in test + */ + public static final String fakeSignaturePlaceholder = "sD3fPKLnFKZUjnSV4qA%2FXoJOqsmDfNfxWcZ7kPtLc0I%3D"; +} diff --git a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java index 60e663063728..6d6da4d5d586 100644 --- a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java +++ b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java @@ -4,7 +4,7 @@ package com.azure.storage.common; /** - * Fake or well known credential list. + * Fake or well known credential list in Tests */ public final class FakeCredentialInTest { /** @@ -12,4 +12,9 @@ public final class FakeCredentialInTest { */ public static final String WELL_KNOWN_ACCOUNT_KEY_VALUE = "95o6TL9jkIjNr6HurD6Xa+zLQ+PX9/VWR8fI2ofHatbrUb8kRJ75B6enwRU3q1OP8fmjghaoxdqnwhN7m3pZow=="; + + /** + * Fake Storage SAS signature value used in test + */ + public static final String FAKE_SIGNATURE_PLACEHOLDER = "sD3fPKLnFKZUjnSV4qA%2FXoJOqsmDfNfxWcZ7kPtLc0I%3D"; } diff --git a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/connectionstring/StorageConnectionStringTest.java b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/connectionstring/StorageConnectionStringTest.java index 8073da964f38..23f9d958bdf1 100644 --- a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/connectionstring/StorageConnectionStringTest.java +++ b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/connectionstring/StorageConnectionStringTest.java @@ -13,6 +13,7 @@ import java.util.Map; import java.util.Set; +import static com.azure.storage.common.FakeCredentialInTest.FAKE_SIGNATURE_PLACEHOLDER; import static com.azure.storage.common.FakeCredentialInTest.WELL_KNOWN_ACCOUNT_KEY_VALUE; import static org.junit.jupiter.api.Assertions.assertThrows; @@ -20,7 +21,7 @@ public class StorageConnectionStringTest { private final ClientLogger logger = new ClientLogger(StorageConnectionStringTest.class); private static final String ACCOUNT_NAME_VALUE = "contoso"; private static final String SAS_TOKEN = - "sv=2015-07-08&sig=sD3fPKLnFKZUjnSV4qA%2FXoJOqsmDfNfxWcZ7kPtLc0I%3D&spr=https" + "sv=2015-07-08&sig=" + FAKE_SIGNATURE_PLACEHOLDER + "&spr=https" + "&st=2016-04-12T03%3A24%3A31Z" + "&se=2016-04-13T03%3A29%3A31Z&srt=s&ss=bf&sp=rwl"; private static final String CHINA_CLOUD_ENDPOINT_SUFFIX = "core.chinacloudapi.cn"; diff --git a/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy b/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy index e61705f21ee4..86e9f101baf2 100644 --- a/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy +++ b/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy @@ -10,5 +10,5 @@ class FakeCredentialInTest { /** * Fake Storage SAS signature value used in test */ - public static final String signature = "Ee%2BSodSXamKSzivSdRTqYGh7AeMVEk3wEoRZ1yzkpSc%3D"; + public static final String fakeSignaturePlaceholder = "Ee%2BSodSXamKSzivSdRTqYGh7AeMVEk3wEoRZ1yzkpSc%3D"; } diff --git a/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/blob/HelperTest.groovy b/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/blob/HelperTest.groovy index 528d39478583..dc382a642353 100644 --- a/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/blob/HelperTest.groovy +++ b/sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/blob/HelperTest.groovy @@ -913,7 +913,7 @@ class HelperTest extends APISpec { def "URLParser"() { when: - def parts = URLParser.parse(new URL("http://host/container/blob?snapshot=snapshot&sv=" + Constants.HeaderConstants.TARGET_STORAGE_VERSION + "&sr=c&sp=r&sig=" + FakeCredentialInTest.signature)) + def parts = URLParser.parse(new URL("http://host/container/blob?snapshot=snapshot&sv=" + Constants.HeaderConstants.TARGET_STORAGE_VERSION + "&sr=c&sp=r&sig=" + FakeCredentialInTest.fakeSignaturePlaceholder)) then: parts.scheme() == "http" @@ -924,6 +924,6 @@ class HelperTest extends APISpec { parts.sasQueryParameters().permissions() == "r" parts.sasQueryParameters().version() == Constants.HeaderConstants.TARGET_STORAGE_VERSION parts.sasQueryParameters().resource() == "c" - parts.sasQueryParameters().signature() == Utility.safeURLDecode(FakeCredentialInTest.signature) + parts.sasQueryParameters().signature() == Utility.safeURLDecode(FakeCredentialInTest.fakeSignaturePlaceholder) } } From c67c9749e57972e78c5beeafaf6d69b1d22e6d75 Mon Sep 17 00:00:00 2001 From: shafang Date: Tue, 25 Oct 2022 11:15:18 -0700 Subject: [PATCH 06/21] update suppressionfile --- eng/CredScanSuppression.json | 1 + 1 file changed, 1 insertion(+) diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index 372720523a33..ea4a0035e5f2 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -52,6 +52,7 @@ { "file": [ "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy", + "sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java", "sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java", "sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java", "sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java" From 5ed03ed99e6642a1d284b47e9353199c81bd7f0f Mon Sep 17 00:00:00 2001 From: shafang Date: Tue, 25 Oct 2022 15:47:52 -0700 Subject: [PATCH 07/21] add more updates --- eng/CredScanSuppression.json | 7 +-- .../generated/RegistryInfoTests.java | 20 ++++---- .../NetworkConnectionInnerTests.java | 14 +++--- .../NetworkConnectionListResultTests.java | 2 +- .../NetworkConnectionUpdateTests.java | 14 +++--- ...orkConnectionsCreateOrUpdateMockTests.java | 10 ++-- ...nnectionsListByResourceGroupMockTests.java | 6 +-- .../NetworkConnectionsListMockTests.java | 6 +-- .../generated/NetworkPropertiesTests.java | 14 +++--- .../credential/JavaDocCodeSnippets.java | 2 +- .../UsernamePasswordCredentialTest.java | 16 +++---- .../CertificateClientTestBase.java | 10 ++-- .../certificates/FakeCredentialInTest.java | 48 +++++++++++++++++++ .../keyvault/secrets/HelloWorldAsync.java | 4 +- .../SAMPLE.md | 2 +- .../NotificationHookTestBase.java | 2 +- .../SqlVirtualMachineInnerTests.java | 20 ++++---- .../SqlVirtualMachinePropertiesTests.java | 26 +++++----- ...SqlVirtualMachinesCreateOrUpdateTests.java | 14 +++--- ...rtualMachinesListByResourceGroupTests.java | 15 +++--- ...lVirtualMachinesListBySqlVmGroupTests.java | 12 ++--- .../SqlVirtualMachinesListTests.java | 12 ++--- .../generated/WsfcDomainCredentialsTests.java | 24 ++++++---- .../generated/WsfcDomainProfileTests.java | 14 +++--- ...nTest.java => FakeCredentialInTest.groovy} | 0 .../blob/specialized/HelperTest.groovy | 2 +- 26 files changed, 185 insertions(+), 131 deletions(-) create mode 100644 sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/FakeCredentialInTest.java rename sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/{FakeCredentialInTest.java => FakeCredentialInTest.groovy} (100%) diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index ea4a0035e5f2..0196a7d303b3 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -51,11 +51,12 @@ }, { "file": [ - "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy", + "sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java", + "sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/FakeCredentialInTest.java", + "sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java", "sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java", "sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java", - "sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java", - "sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java" + "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy" ], "_justification": "File contains fake key used by test code." } diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/test/java/com/azure/resourcemanager/appcontainers/generated/RegistryInfoTests.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/test/java/com/azure/resourcemanager/appcontainers/generated/RegistryInfoTests.java index 7154ef4e094c..38355550578a 100644 --- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/test/java/com/azure/resourcemanager/appcontainers/generated/RegistryInfoTests.java +++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/test/java/com/azure/resourcemanager/appcontainers/generated/RegistryInfoTests.java @@ -15,23 +15,23 @@ public void testDeserialize() { RegistryInfo model = BinaryData .fromString( - "{\"registryUrl\":\"klnsrmffey\",\"registryUserName\":\"ckt\",\"registryPassword\":\"ymerteeammxq\"}") + "{\"registryUrl\":\"fakeUrlPlaceholder\",\"registryUserName\":\"fakeNamePlaceholder\",\"registryPassword\":\"fakeCredentialPlaceholder\"}") .toObject(RegistryInfo.class); - Assertions.assertEquals("klnsrmffey", model.registryUrl()); - Assertions.assertEquals("ckt", model.registryUsername()); - Assertions.assertEquals("ymerteeammxq", model.registryPassword()); + Assertions.assertEquals("fakeUrlPlaceholder", model.registryUrl()); + Assertions.assertEquals("fakeNamePlaceholder", model.registryUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.registryPassword()); } @Test public void testSerialize() { RegistryInfo model = new RegistryInfo() - .withRegistryUrl("klnsrmffey") - .withRegistryUsername("ckt") - .withRegistryPassword("ymerteeammxq"); + .withRegistryUrl("fakeUrlPlaceholder") + .withRegistryUsername("fakeNamePlaceholder") + .withRegistryPassword("fakeCredentialPlaceholder"); model = BinaryData.fromObject(model).toObject(RegistryInfo.class); - Assertions.assertEquals("klnsrmffey", model.registryUrl()); - Assertions.assertEquals("ckt", model.registryUsername()); - Assertions.assertEquals("ymerteeammxq", model.registryPassword()); + Assertions.assertEquals("fakeUrlPlaceholder", model.registryUrl()); + Assertions.assertEquals("fakeNamePlaceholder", model.registryUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.registryPassword()); } } diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java index 8f9f62e1bce3..a246c53549eb 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java @@ -18,7 +18,7 @@ public void testDeserialize() { NetworkConnectionInner model = BinaryData .fromString( - "{\"properties\":{\"provisioningState\":\"f\",\"healthCheckStatus\":\"Warning\",\"networkingResourceGroupName\":\"bfvoowvrv\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"jqppyostronzmy\",\"domainName\":\"fipns\",\"organizationUnit\":\"mcwaekrrjr\",\"domainUsername\":\"fxtsgum\",\"domainPassword\":\"glikkxwslolb\"},\"location\":\"vuzlm\",\"tags\":{\"noigbrnjwmwk\":\"lfktgplcrpwjxe\"},\"id\":\"nbsazejjoqkag\",\"name\":\"hsxttaugzxnf\",\"type\":\"azpxdtnkdmkqjjl\"}") + "{\"properties\":{\"provisioningState\":\"f\",\"healthCheckStatus\":\"Warning\",\"networkingResourceGroupName\":\"bfvoowvrv\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"jqppyostronzmy\",\"domainName\":\"fipns\",\"organizationUnit\":\"mcwaekrrjr\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"glikkxwslolb\"},\"location\":\"vuzlm\",\"tags\":{\"noigbrnjwmwk\":\"lfktgplcrpwjxe\"},\"id\":\"nbsazejjoqkag\",\"name\":\"hsxttaugzxnf\",\"type\":\"azpxdtnkdmkqjjl\"}") .toObject(NetworkConnectionInner.class); Assertions.assertEquals("vuzlm", model.location()); Assertions.assertEquals("lfktgplcrpwjxe", model.tags().get("noigbrnjwmwk")); @@ -27,8 +27,8 @@ public void testDeserialize() { Assertions.assertEquals("jqppyostronzmy", model.subnetId()); Assertions.assertEquals("fipns", model.domainName()); Assertions.assertEquals("mcwaekrrjr", model.organizationUnit()); - Assertions.assertEquals("fxtsgum", model.domainUsername()); - Assertions.assertEquals("glikkxwslolb", model.domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); } @Test @@ -42,8 +42,8 @@ public void testSerialize() { .withSubnetId("jqppyostronzmy") .withDomainName("fipns") .withOrganizationUnit("mcwaekrrjr") - .withDomainUsername("fxtsgum") - .withDomainPassword("glikkxwslolb"); + .withDomainUsername("fakeNamePlaceholder") + .withDomainPassword("fakeCredentialPlaceholder"); model = BinaryData.fromObject(model).toObject(NetworkConnectionInner.class); Assertions.assertEquals("vuzlm", model.location()); Assertions.assertEquals("lfktgplcrpwjxe", model.tags().get("noigbrnjwmwk")); @@ -52,8 +52,8 @@ public void testSerialize() { Assertions.assertEquals("jqppyostronzmy", model.subnetId()); Assertions.assertEquals("fipns", model.domainName()); Assertions.assertEquals("mcwaekrrjr", model.organizationUnit()); - Assertions.assertEquals("fxtsgum", model.domainUsername()); - Assertions.assertEquals("glikkxwslolb", model.domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); } @SuppressWarnings("unchecked") diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionListResultTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionListResultTests.java index acc6ae9599c8..327c4d5a1b71 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionListResultTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionListResultTests.java @@ -14,7 +14,7 @@ public void testDeserialize() { NetworkConnectionListResult model = BinaryData .fromString( - "{\"value\":[{\"properties\":{\"provisioningState\":\"wkqnyhg\",\"healthCheckStatus\":\"Pending\",\"networkingResourceGroupName\":\"jivfxzsjabib\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"tawfsdjpvkvp\",\"domainName\":\"xbkzbzkdvncj\",\"organizationUnit\":\"udurgkakmokz\",\"domainUsername\":\"jk\",\"domainPassword\":\"fhmouwq\"},\"location\":\"zrfze\",\"tags\":{\"bjbsybb\":\"bizikayuhq\",\"ldgmfpgvmpip\":\"wrv\",\"x\":\"slthaq\"},\"id\":\"smwutwbdsrezpd\",\"name\":\"hneuyowqkd\",\"type\":\"ytisibir\"},{\"properties\":{\"provisioningState\":\"ikpzimejza\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"xi\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"mbzonokix\",\"domainName\":\"q\",\"organizationUnit\":\"rgz\",\"domainUsername\":\"rlazszrnw\",\"domainPassword\":\"indfpwpjyl\"},\"location\":\"tlhflsjcdhszf\",\"tags\":{\"qmqhldvriii\":\"bgofeljag\",\"vtvsexsowueluq\":\"jnalghf\",\"wws\":\"hahhxvrhmzkwpj\",\"qxujxukndxd\":\"ughftqsx\"},\"id\":\"grjguufzd\",\"name\":\"syqtfi\",\"type\":\"whbotzingamv\"},{\"properties\":{\"provisioningState\":\"o\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"udphqamvdkfwyn\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"tbvkayhmtnvyq\",\"domainName\":\"tkzwpcnpwzc\",\"organizationUnit\":\"esgvvsccyaj\",\"domainUsername\":\"qfhwyg\",\"domainPassword\":\"vdnkfxusem\"},\"location\":\"zrmuhapfcqdps\",\"tags\":{\"vezrypqlmfeo\":\"vpsvuoymgcce\",\"edkowepbqpcrfk\":\"erqwkyhkobopg\",\"tn\":\"wccsnjvcdwxlpqek\"},\"id\":\"htjsying\",\"name\":\"fq\",\"type\":\"tmtdhtmdvypgik\"},{\"properties\":{\"provisioningState\":\"zywkb\",\"healthCheckStatus\":\"Unknown\",\"networkingResourceGroupName\":\"uzhlhkjoqrv\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"atjinrvgoupmfiib\",\"domainName\":\"gjio\",\"organizationUnit\":\"vrwxkv\",\"domainUsername\":\"k\",\"domainPassword\":\"lqwjygvjayvblm\"},\"location\":\"k\",\"tags\":{\"opbyrqufegxu\":\"bxvvyhg\",\"bnhlmc\":\"wz\",\"dn\":\"l\",\"ijejvegrhbpn\":\"itvgbmhrixkwm\"},\"id\":\"ixexcc\",\"name\":\"dreaxh\",\"type\":\"exdrrvqahqkg\"}],\"nextLink\":\"pwijnhy\"}") + "{\"value\":[{\"properties\":{\"provisioningState\":\"wkqnyhg\",\"healthCheckStatus\":\"Pending\",\"networkingResourceGroupName\":\"jivfxzsjabib\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"tawfsdjpvkvp\",\"domainName\":\"xbkzbzkdvncj\",\"organizationUnit\":\"udurgkakmokz\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"zrfze\",\"tags\":{\"bjbsybb\":\"bizikayuhq\",\"ldgmfpgvmpip\":\"wrv\",\"x\":\"slthaq\"},\"id\":\"smwutwbdsrezpd\",\"name\":\"hneuyowqkd\",\"type\":\"ytisibir\"},{\"properties\":{\"provisioningState\":\"ikpzimejza\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"xi\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"mbzonokix\",\"domainName\":\"q\",\"organizationUnit\":\"rgz\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"tlhflsjcdhszf\",\"tags\":{\"qmqhldvriii\":\"bgofeljag\",\"vtvsexsowueluq\":\"jnalghf\",\"wws\":\"hahhxvrhmzkwpj\",\"qxujxukndxd\":\"ughftqsx\"},\"id\":\"grjguufzd\",\"name\":\"syqtfi\",\"type\":\"whbotzingamv\"},{\"properties\":{\"provisioningState\":\"o\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"udphqamvdkfwyn\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"tbvkayhmtnvyq\",\"domainName\":\"tkzwpcnpwzc\",\"organizationUnit\":\"esgvvsccyaj\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"zrmuhapfcqdps\",\"tags\":{\"vezrypqlmfeo\":\"vpsvuoymgcce\",\"edkowepbqpcrfk\":\"erqwkyhkobopg\",\"tn\":\"wccsnjvcdwxlpqek\"},\"id\":\"htjsying\",\"name\":\"fq\",\"type\":\"tmtdhtmdvypgik\"},{\"properties\":{\"provisioningState\":\"zywkb\",\"healthCheckStatus\":\"Unknown\",\"networkingResourceGroupName\":\"uzhlhkjoqrv\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"atjinrvgoupmfiib\",\"domainName\":\"gjio\",\"organizationUnit\":\"vrwxkv\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"k\",\"tags\":{\"opbyrqufegxu\":\"bxvvyhg\",\"bnhlmc\":\"wz\",\"dn\":\"l\",\"ijejvegrhbpn\":\"itvgbmhrixkwm\"},\"id\":\"ixexcc\",\"name\":\"dreaxh\",\"type\":\"exdrrvqahqkg\"}],\"nextLink\":\"pwijnhy\"}") .toObject(NetworkConnectionListResult.class); } diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionUpdateTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionUpdateTests.java index c34e8e63116c..1a3c57e5edb3 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionUpdateTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionUpdateTests.java @@ -17,15 +17,15 @@ public void testDeserialize() { NetworkConnectionUpdate model = BinaryData .fromString( - "{\"properties\":{\"subnetId\":\"o\",\"domainName\":\"ttpkiwkkbnujrywv\",\"organizationUnit\":\"lbfpncurd\",\"domainUsername\":\"wiithtywub\",\"domainPassword\":\"bihwqknfdnt\"},\"tags\":{\"dzjlu\":\"hrdgoihxumwcto\",\"wtovvtgsein\":\"dfdlwggyts\",\"knpirgnepttwq\":\"fiufx\",\"mqnrojlpijnkr\":\"sniffc\"},\"location\":\"rddh\"}") + "{\"properties\":{\"subnetId\":\"o\",\"domainName\":\"ttpkiwkkbnujrywv\",\"organizationUnit\":\"lbfpncurd\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"tags\":{\"dzjlu\":\"hrdgoihxumwcto\",\"wtovvtgsein\":\"dfdlwggyts\",\"knpirgnepttwq\":\"fiufx\",\"mqnrojlpijnkr\":\"sniffc\"},\"location\":\"rddh\"}") .toObject(NetworkConnectionUpdate.class); Assertions.assertEquals("hrdgoihxumwcto", model.tags().get("dzjlu")); Assertions.assertEquals("rddh", model.location()); Assertions.assertEquals("o", model.subnetId()); Assertions.assertEquals("ttpkiwkkbnujrywv", model.domainName()); Assertions.assertEquals("lbfpncurd", model.organizationUnit()); - Assertions.assertEquals("wiithtywub", model.domainUsername()); - Assertions.assertEquals("bihwqknfdnt", model.domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); } @Test @@ -46,16 +46,16 @@ public void testSerialize() { .withSubnetId("o") .withDomainName("ttpkiwkkbnujrywv") .withOrganizationUnit("lbfpncurd") - .withDomainUsername("wiithtywub") - .withDomainPassword("bihwqknfdnt"); + .withDomainUsername("fakeNamePlaceholder") + .withDomainPassword("fakeCredentialPlaceholder"); model = BinaryData.fromObject(model).toObject(NetworkConnectionUpdate.class); Assertions.assertEquals("hrdgoihxumwcto", model.tags().get("dzjlu")); Assertions.assertEquals("rddh", model.location()); Assertions.assertEquals("o", model.subnetId()); Assertions.assertEquals("ttpkiwkkbnujrywv", model.domainName()); Assertions.assertEquals("lbfpncurd", model.organizationUnit()); - Assertions.assertEquals("wiithtywub", model.domainUsername()); - Assertions.assertEquals("bihwqknfdnt", model.domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); } @SuppressWarnings("unchecked") diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsCreateOrUpdateMockTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsCreateOrUpdateMockTests.java index 033869cd765a..5c272a470557 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsCreateOrUpdateMockTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsCreateOrUpdateMockTests.java @@ -34,7 +34,7 @@ public void testCreateOrUpdate() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"properties\":{\"provisioningState\":\"Succeeded\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"ov\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"ashcxlpmjerbdk\",\"domainName\":\"vidizozsdb\",\"organizationUnit\":\"xjmonf\",\"domainUsername\":\"nwncypuuw\",\"domainPassword\":\"tvuqjctzenkeifzz\"},\"location\":\"kdasvflyhbxcudch\",\"tags\":{\"ldforobwj\":\"rb\",\"vacqpbtuodxesz\":\"vizbfhfo\",\"rrwoycqucwyhahn\":\"bbelawumuaslzk\"},\"id\":\"mdr\",\"name\":\"ywuhpsvfuur\",\"type\":\"tlwexxwlalniexz\"}"; + "{\"properties\":{\"provisioningState\":\"Succeeded\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"ov\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"ashcxlpmjerbdk\",\"domainName\":\"vidizozsdb\",\"organizationUnit\":\"xjmonf\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"kdasvflyhbxcudch\",\"tags\":{\"ldforobwj\":\"rb\",\"vacqpbtuodxesz\":\"vizbfhfo\",\"rrwoycqucwyhahn\":\"bbelawumuaslzk\"},\"id\":\"mdr\",\"name\":\"ywuhpsvfuur\",\"type\":\"tlwexxwlalniexz\"}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -74,8 +74,8 @@ public void testCreateOrUpdate() throws Exception { .withSubnetId("pmzznrtffya") .withDomainName("tmhheioqa") .withOrganizationUnit("v") - .withDomainUsername("ufuqyrx") - .withDomainPassword("lcgqlsismj") + .withDomainUsername("fakeNamePlaceholder") + .withDomainPassword("fakeCredentialPlaceholder") .create(); Assertions.assertEquals("kdasvflyhbxcudch", response.location()); @@ -85,8 +85,8 @@ public void testCreateOrUpdate() throws Exception { Assertions.assertEquals("ashcxlpmjerbdk", response.subnetId()); Assertions.assertEquals("vidizozsdb", response.domainName()); Assertions.assertEquals("xjmonf", response.organizationUnit()); - Assertions.assertEquals("nwncypuuw", response.domainUsername()); - Assertions.assertEquals("tvuqjctzenkeifzz", response.domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", response.domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", response.domainPassword()); } @SuppressWarnings("unchecked") diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListByResourceGroupMockTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListByResourceGroupMockTests.java index 60b3239dbe98..8dd4333ccf07 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListByResourceGroupMockTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListByResourceGroupMockTests.java @@ -34,7 +34,7 @@ public void testListByResourceGroup() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"value\":[{\"properties\":{\"provisioningState\":\"pdvjdhttzaefedx\",\"healthCheckStatus\":\"Failed\",\"networkingResourceGroupName\":\"rphkmcrjdqnsdfz\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"tg\",\"domainName\":\"lkdghr\",\"organizationUnit\":\"uutlwxezwzhok\",\"domainUsername\":\"wnhhtqlgehgppip\",\"domainPassword\":\"hpfeoajvgcxtxjc\"},\"location\":\"eafidltugsresm\",\"tags\":{\"rhptilluc\":\"jhoiftxfkfweg\",\"cwsldri\":\"iqtgdqoh\",\"bphbqzmizakakank\":\"etpwbralll\",\"n\":\"p\"},\"id\":\"zhajoylhjlmuo\",\"name\":\"xprimrsop\",\"type\":\"eecjmeis\"}]}"; + "{\"value\":[{\"properties\":{\"provisioningState\":\"pdvjdhttzaefedx\",\"healthCheckStatus\":\"Failed\",\"networkingResourceGroupName\":\"rphkmcrjdqnsdfz\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"tg\",\"domainName\":\"lkdghr\",\"organizationUnit\":\"uutlwxezwzhok\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"eafidltugsresm\",\"tags\":{\"rhptilluc\":\"jhoiftxfkfweg\",\"cwsldri\":\"iqtgdqoh\",\"bphbqzmizakakank\":\"etpwbralll\",\"n\":\"p\"},\"id\":\"zhajoylhjlmuo\",\"name\":\"xprimrsop\",\"type\":\"eecjmeis\"}]}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -72,7 +72,7 @@ public void testListByResourceGroup() throws Exception { Assertions.assertEquals("tg", response.iterator().next().subnetId()); Assertions.assertEquals("lkdghr", response.iterator().next().domainName()); Assertions.assertEquals("uutlwxezwzhok", response.iterator().next().organizationUnit()); - Assertions.assertEquals("wnhhtqlgehgppip", response.iterator().next().domainUsername()); - Assertions.assertEquals("hpfeoajvgcxtxjc", response.iterator().next().domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", response.iterator().next().domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", response.iterator().next().domainPassword()); } } diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListMockTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListMockTests.java index 7c49c9f9f9cc..d5e9e2620756 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListMockTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListMockTests.java @@ -34,7 +34,7 @@ public void testList() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"value\":[{\"properties\":{\"provisioningState\":\"ddjib\",\"healthCheckStatus\":\"Failed\",\"networkingResourceGroupName\":\"ititvtzeexavoxt\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"ecdmdqbwpy\",\"domainName\":\"tgsfja\",\"organizationUnit\":\"slhhxudbxv\",\"domainUsername\":\"htnsi\",\"domainPassword\":\"dhzmmesckdlp\"},\"location\":\"zrcxfailcfxwmdbo\",\"tags\":{\"ckknhxkizvy\":\"gsftufqobrjlnacg\",\"nok\":\"nrzvuljraaer\",\"a\":\"gukkjqnvbroy\"},\"id\":\"xulcdisdos\",\"name\":\"jbjsvgjrwh\",\"type\":\"yvycytdclxgcckn\"}]}"; + "{\"value\":[{\"properties\":{\"provisioningState\":\"ddjib\",\"healthCheckStatus\":\"Failed\",\"networkingResourceGroupName\":\"ititvtzeexavoxt\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"ecdmdqbwpy\",\"domainName\":\"tgsfja\",\"organizationUnit\":\"slhhxudbxv\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"zrcxfailcfxwmdbo\",\"tags\":{\"ckknhxkizvy\":\"gsftufqobrjlnacg\",\"nok\":\"nrzvuljraaer\",\"a\":\"gukkjqnvbroy\"},\"id\":\"xulcdisdos\",\"name\":\"jbjsvgjrwh\",\"type\":\"yvycytdclxgcckn\"}]}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -71,7 +71,7 @@ public void testList() throws Exception { Assertions.assertEquals("ecdmdqbwpy", response.iterator().next().subnetId()); Assertions.assertEquals("tgsfja", response.iterator().next().domainName()); Assertions.assertEquals("slhhxudbxv", response.iterator().next().organizationUnit()); - Assertions.assertEquals("htnsi", response.iterator().next().domainUsername()); - Assertions.assertEquals("dhzmmesckdlp", response.iterator().next().domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", response.iterator().next().domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", response.iterator().next().domainPassword()); } } diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkPropertiesTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkPropertiesTests.java index 287d9763a426..16993e6dd41e 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkPropertiesTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkPropertiesTests.java @@ -16,13 +16,13 @@ public void testDeserialize() { NetworkProperties model = BinaryData .fromString( - "{\"provisioningState\":\"envrkpyouaibrebq\",\"healthCheckStatus\":\"Pending\",\"networkingResourceGroupName\":\"j\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"qtnqtt\",\"domainName\":\"lwfffi\",\"organizationUnit\":\"pjpqqmtedltmmji\",\"domainUsername\":\"eozphv\",\"domainPassword\":\"uyqncygupkvipmd\"}") + "{\"provisioningState\":\"envrkpyouaibrebq\",\"healthCheckStatus\":\"Pending\",\"networkingResourceGroupName\":\"j\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"qtnqtt\",\"domainName\":\"lwfffi\",\"organizationUnit\":\"pjpqqmtedltmmji\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"}") .toObject(NetworkProperties.class); Assertions.assertEquals("qtnqtt", model.subnetId()); Assertions.assertEquals("lwfffi", model.domainName()); Assertions.assertEquals("pjpqqmtedltmmji", model.organizationUnit()); - Assertions.assertEquals("eozphv", model.domainUsername()); - Assertions.assertEquals("uyqncygupkvipmd", model.domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); Assertions.assertEquals("j", model.networkingResourceGroupName()); Assertions.assertEquals(DomainJoinType.HYBRID_AZURE_ADJOIN, model.domainJoinType()); } @@ -34,16 +34,16 @@ public void testSerialize() { .withSubnetId("qtnqtt") .withDomainName("lwfffi") .withOrganizationUnit("pjpqqmtedltmmji") - .withDomainUsername("eozphv") - .withDomainPassword("uyqncygupkvipmd") + .withDomainUsername("fakeNamePlaceholder") + .withDomainPassword("fakeCredentialPlaceholder") .withNetworkingResourceGroupName("j") .withDomainJoinType(DomainJoinType.HYBRID_AZURE_ADJOIN); model = BinaryData.fromObject(model).toObject(NetworkProperties.class); Assertions.assertEquals("qtnqtt", model.subnetId()); Assertions.assertEquals("lwfffi", model.domainName()); Assertions.assertEquals("pjpqqmtedltmmji", model.organizationUnit()); - Assertions.assertEquals("eozphv", model.domainUsername()); - Assertions.assertEquals("uyqncygupkvipmd", model.domainPassword()); + Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); Assertions.assertEquals("j", model.networkingResourceGroupName()); Assertions.assertEquals(DomainJoinType.HYBRID_AZURE_ADJOIN, model.domainJoinType()); } diff --git a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java index 21007e31730e..6cf7871c4404 100644 --- a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java +++ b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java @@ -26,7 +26,7 @@ public final class JavaDocCodeSnippets { private String tenantId = System.getenv("AZURE_TENANT_ID"); private String clientId = System.getenv("AZURE_CLIENT_ID"); private String clientSecret = System.getenv("AZURE_CLIENT_SECRET"); - private String username = "fakeUserNamePlaceholder"; + private String username = "fakeNamePlaceholder"; private String password = "fakeCredentialPlaceholder"; /** diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index fbdb5df312d4..922e3853bb62 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -36,7 +36,7 @@ public class UsernamePasswordCredentialTest { @Test public void testValidUserCredential() throws Exception { // setup - String username = "fakeUserNamePlaceholder"; + String username = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; String token2 = "token2"; @@ -105,7 +105,7 @@ public void testValidUserCredential() throws Exception { @Test public void testInvalidUserCredential() throws Exception { // setup - String username = "fakeUserNamePlaceholder"; + String username = "fakeNamePlaceholder"; String badPassword = "Password"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -146,7 +146,7 @@ public void testInvalidUserCredential() throws Exception { @Test public void testInvalidParameters() throws Exception { // setup - String username = "fakeUserNamePlaceholder"; + String username = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -184,7 +184,7 @@ public void testInvalidParameters() throws Exception { @Test public void testValidAuthenticate() throws Exception { // setup - String username = "fakeUserNamePlaceholder"; + String username = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -202,7 +202,7 @@ public void testValidAuthenticate() throws Exception { StepVerifier.create(credential.authenticate(request1)) .expectNextMatches(authenticationRecord -> authenticationRecord.getAuthority() .equals("http://login.microsoftonline.com") - && authenticationRecord.getUsername().equals("fakeUserNamePlaceholder") + && authenticationRecord.getUsername().equals("fakeNamePlaceholder") && authenticationRecord.getHomeAccountId() != null) .verifyComplete(); Assert.assertNotNull(identityClientMock); @@ -212,7 +212,7 @@ public void testValidAuthenticate() throws Exception { @Test public void testAdditionalTenantNoImpact() { // setup - String username = "fakeUserNamePlaceholder"; + String username = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") @@ -229,7 +229,7 @@ public void testAdditionalTenantNoImpact() { @Test public void testInvalidMultiTenantAuth() { // setup - String username = "fakeUserNamePlaceholder"; + String username = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") @@ -246,7 +246,7 @@ public void testInvalidMultiTenantAuth() { @Test public void testValidMultiTenantAuth() { // setup - String username = "fakeUserNamePlaceholder"; + String username = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") diff --git a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java index 2030801d7a7d..01135ddc71e6 100644 --- a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java +++ b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java @@ -59,6 +59,7 @@ import java.util.function.Consumer; import java.util.stream.Stream; +import static com.azure.security.keyvault.certificates.FakeCredentialInTest.FAKE_CERTIFICATE_CONTENT; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.fail; @@ -388,7 +389,7 @@ void updateIssuerRunner(BiConsumer testRun .setAccountId("otherIssuerAccountId") .setEnabled(false) .setOrganizationId("otherOrgId") - .setPassword("test465"); + .setPassword("fakeCredentialPlaceholder"); testRunner.accept(certificateIssuer, issuerForUpdate); } @@ -456,15 +457,14 @@ void listDeletedCertificatesRunner(Consumer> testRunner) { public abstract void importCertificate(HttpClient httpClient, CertificateServiceVersion serviceVersion); void importCertificateRunner(Consumer testRunner) { - String certificateContent = "MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ"; - String certificatePassword = "132"; + String certificatePassword = "fakeCredentialPlaceholder"; String certificateName = testResourceNamer.randomName("importCertPkcs", 25); HashMap tags = new HashMap<>(); tags.put("key", "val"); ImportCertificateOptions importCertificateOptions = - new ImportCertificateOptions(certificateName, Base64.getDecoder().decode(certificateContent)) + new ImportCertificateOptions(certificateName, Base64.getDecoder().decode(FAKE_CERTIFICATE_CONTENT)) .setPassword(certificatePassword) .setEnabled(true) .setTags(tags); @@ -521,7 +521,7 @@ CertificateIssuer setupIssuer(String issuerName) { .setAccountId("issuerAccountId") .setEnabled(true) .setOrganizationId("orgId") - .setPassword("test132"); + .setPassword("fakeCredentialPlaceholder"); } String toHexString(byte[] x5t) { diff --git a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/FakeCredentialInTest.java b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/FakeCredentialInTest.java new file mode 100644 index 000000000000..12d3cdfed431 --- /dev/null +++ b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/FakeCredentialInTest.java @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.azure.security.keyvault.certificates; + +/** + * Fake credential shared in Tests + */ +public class FakeCredentialInTest { + /** + * Fake certificate content + */ + public static final String FAKE_CERTIFICATE_CONTENT = + "MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQE" + + "MCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcR" + + "R3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHE" + + "q5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/" + + "wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFq" + + "r5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2" + + "yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lO" + + "gKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/" + + "qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDv" + + "uNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd" + + "0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O" + + "0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBN" + + "pXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZd" + + "ktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjg" + + "wHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFt" + + "AkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6Rd" + + "NA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE" + + "0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkY" + + "VFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQ" + + "Ji+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAAD" + + "BXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAA" + + "xADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAg" + + "AEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBA" + + "DCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGN" + + "BmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gF" + + "Q2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2X" + + "ykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWs" + + "gxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTc" + + "OC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0G" + + "nEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMB" + + "aLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/" + + "sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIX" + + "Ti+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4" + + "wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ"; +} diff --git a/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/HelloWorldAsync.java b/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/HelloWorldAsync.java index dddf21106b3b..bc189863076c 100644 --- a/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/HelloWorldAsync.java +++ b/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/HelloWorldAsync.java @@ -35,7 +35,7 @@ public static void main(String[] args) throws InterruptedException { // Let's create a secret holding bank account credentials valid for 1 year. If the secret already exists in the // key vault, then a new version of the secret is created. - secretAsyncClient.setSecret(new KeyVaultSecret("BankAccountPassword", "f4G34fMh8v") + secretAsyncClient.setSecret(new KeyVaultSecret("BankAccountPassword", "fakeCredentialPlaceholder") .setProperties(new SecretProperties() .setExpiresOn(OffsetDateTime.now().plusYears(1)))) .subscribe(secretResponse -> @@ -70,7 +70,7 @@ public static void main(String[] args) throws InterruptedException { // Bank forced a password update for security purposes. Let's change the value of the secret in the key vault. // To achieve this, we need to create a new version of the secret in the key vault. The update operation cannot // change the value of the secret. - secretAsyncClient.setSecret("BankAccountPassword", "bhjd4DDgsa") + secretAsyncClient.setSecret("BankAccountPassword", "fakeCredentialPlaceholder") .subscribe(secretResponse -> System.out.printf("Secret is created with name %s and value %s %n", secretResponse.getName(), secretResponse.getValue())); diff --git a/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md b/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md index 5b2130cb05e2..a85cd557b0d2 100644 --- a/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md +++ b/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md @@ -1064,7 +1064,7 @@ public final class VirtualMachinesResetPasswordSamples { manager .virtualMachines() .resetPassword( - "testrg123", + "testrg132", "testlab", "template", new ResetPasswordBody().withUsername("example-username").withPassword("example-password"), diff --git a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java index 3fc196b1b267..0df140a24574 100644 --- a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java +++ b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java @@ -65,7 +65,7 @@ protected static class CreateWebHookInput { String endpoint = "https://httpbin.org/post"; String description = "alert_us!"; String externalLink = "https://github.com/Azure/azure-sdk-for-java/wiki"; - String userName = "fakeUserNamePlaceholder"; + String userName = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; HttpHeaders httpHeaders = new HttpHeaders() .put("x-contoso-id", "123") diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java index b4e08271df7a..ff6068d37228 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java @@ -37,7 +37,7 @@ public void testDeserialize() { SqlVirtualMachineInner model = BinaryData .fromString( - "{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"scxaq\",\"provisioningState\":\"ochcbonqvpkvl\",\"sqlImageOffer\":\"njeaseipheofloke\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"NoAgent\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Express\",\"sqlVirtualMachineGroupResourceId\":\"tgrhpdjpjumas\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"jpqyegu\",\"clusterOperatorAccountPassword\":\"hb\",\"sqlServiceAccountPassword\":\"hejjz\"},\"wsfcStaticIp\":\"dudgwdslfhot\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1733107709,\"maintenanceWindowDuration\":991937495},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":1625524147,\"storageAccountUrl\":\"dehxnltyfsoppu\",\"storageContainerName\":\"esnzwde\",\"storageAccessKey\":\"avo\",\"password\":\"zdmohctbqvu\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Sunday\",\"Saturday\",\"Friday\",\"Wednesday\"],\"fullBackupStartTime\":766815263,\"fullBackupWindowHours\":247911704,\"logBackupFrequency\":175400299},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"slazjdyg\",\"azureKeyVaultUrl\":\"tjixhbkuofqweyk\",\"servicePrincipalName\":\"enevfyexfwhybci\",\"servicePrincipalSecret\":\"yvdcsitynnaa\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":true},\"location\":\"jrefovgmkqsle\",\"tags\":{\"k\":\"xyqj\",\"jh\":\"attpngjcrcczsq\",\"ysou\":\"mdajv\",\"canoaeupf\":\"q\"},\"id\":\"yhltrpmopjmcm\",\"name\":\"tuo\",\"type\":\"thfuiuaodsfcpkvx\"}") + "{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"scxaq\",\"provisioningState\":\"ochcbonqvpkvl\",\"sqlImageOffer\":\"njeaseipheofloke\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"NoAgent\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Express\",\"sqlVirtualMachineGroupResourceId\":\"tgrhpdjpjumas\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"hb\",\"sqlServiceAccountPassword\":\"fakeCredentialPlaceholder\"},\"wsfcStaticIp\":\"dudgwdslfhot\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1733107709,\"maintenanceWindowDuration\":991937495},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":1625524147,\"storageAccountUrl\":\"dehxnltyfsoppu\",\"storageContainerName\":\"esnzwde\",\"storageAccessKey\":\"avo\",\"password\":\"fakeCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Sunday\",\"Saturday\",\"Friday\",\"Wednesday\"],\"fullBackupStartTime\":766815263,\"fullBackupWindowHours\":247911704,\"logBackupFrequency\":175400299},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"slazjdyg\",\"azureKeyVaultUrl\":\"tjixhbkuofqweyk\",\"servicePrincipalName\":\"enevfyexfwhybci\",\"servicePrincipalSecret\":\"yvdcsitynnaa\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":true},\"location\":\"jrefovgmkqsle\",\"tags\":{\"k\":\"xyqj\",\"jh\":\"attpngjcrcczsq\",\"ysou\":\"mdajv\",\"canoaeupf\":\"q\"},\"id\":\"yhltrpmopjmcm\",\"name\":\"tuo\",\"type\":\"thfuiuaodsfcpkvx\"}") .toObject(SqlVirtualMachineInner.class); Assertions.assertEquals("jrefovgmkqsle", model.location()); Assertions.assertEquals("xyqj", model.tags().get("k")); @@ -49,9 +49,9 @@ public void testDeserialize() { Assertions.assertEquals(LeastPrivilegeMode.ENABLED, model.leastPrivilegeMode()); Assertions.assertEquals(SqlImageSku.EXPRESS, model.sqlImageSku()); Assertions.assertEquals("tgrhpdjpjumas", model.sqlVirtualMachineGroupResourceId()); - Assertions.assertEquals("jpqyegu", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); Assertions.assertEquals("hb", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); - Assertions.assertEquals("hejjz", model.wsfcDomainCredentials().sqlServiceAccountPassword()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("dudgwdslfhot", model.wsfcStaticIp()); Assertions.assertEquals(false, model.autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.WEDNESDAY, model.autoPatchingSettings().dayOfWeek()); @@ -63,7 +63,7 @@ public void testDeserialize() { Assertions.assertEquals("dehxnltyfsoppu", model.autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("esnzwde", model.autoBackupSettings().storageContainerName()); Assertions.assertEquals("avo", model.autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("zdmohctbqvu", model.autoBackupSettings().password()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.autoBackupSettings().password()); Assertions.assertEquals(false, model.autoBackupSettings().backupSystemDbs()); Assertions.assertEquals(BackupScheduleType.MANUAL, model.autoBackupSettings().backupScheduleType()); Assertions.assertEquals(FullBackupFrequencyType.WEEKLY, model.autoBackupSettings().fullBackupFrequency()); @@ -101,9 +101,9 @@ public void testSerialize() { .withSqlVirtualMachineGroupResourceId("tgrhpdjpjumas") .withWsfcDomainCredentials( new WsfcDomainCredentials() - .withClusterBootstrapAccountPassword("jpqyegu") + .withClusterBootstrapAccountPassword("fakeCredentialPlaceholder") .withClusterOperatorAccountPassword("hb") - .withSqlServiceAccountPassword("hejjz")) + .withSqlServiceAccountPassword("fakeCredentialPlaceholder")) .withWsfcStaticIp("dudgwdslfhot") .withAutoPatchingSettings( new AutoPatchingSettings() @@ -119,7 +119,7 @@ public void testSerialize() { .withStorageAccountUrl("dehxnltyfsoppu") .withStorageContainerName("esnzwde") .withStorageAccessKey("avo") - .withPassword("zdmohctbqvu") + .withPassword("fakeCredentialPlaceholder") .withBackupSystemDbs(false) .withBackupScheduleType(BackupScheduleType.MANUAL) .withFullBackupFrequency(FullBackupFrequencyType.WEEKLY) @@ -159,9 +159,9 @@ public void testSerialize() { Assertions.assertEquals(LeastPrivilegeMode.ENABLED, model.leastPrivilegeMode()); Assertions.assertEquals(SqlImageSku.EXPRESS, model.sqlImageSku()); Assertions.assertEquals("tgrhpdjpjumas", model.sqlVirtualMachineGroupResourceId()); - Assertions.assertEquals("jpqyegu", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); Assertions.assertEquals("hb", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); - Assertions.assertEquals("hejjz", model.wsfcDomainCredentials().sqlServiceAccountPassword()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("dudgwdslfhot", model.wsfcStaticIp()); Assertions.assertEquals(false, model.autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.WEDNESDAY, model.autoPatchingSettings().dayOfWeek()); @@ -173,7 +173,7 @@ public void testSerialize() { Assertions.assertEquals("dehxnltyfsoppu", model.autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("esnzwde", model.autoBackupSettings().storageContainerName()); Assertions.assertEquals("avo", model.autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("zdmohctbqvu", model.autoBackupSettings().password()); + Assertions.assertEquals("fakeCredentialPlaceholder", model.autoBackupSettings().password()); Assertions.assertEquals(false, model.autoBackupSettings().backupSystemDbs()); Assertions.assertEquals(BackupScheduleType.MANUAL, model.autoBackupSettings().backupScheduleType()); Assertions.assertEquals(FullBackupFrequencyType.WEEKLY, model.autoBackupSettings().fullBackupFrequency()); diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java index bd5d26446405..1330163870c4 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java @@ -44,7 +44,7 @@ public void testDeserialize() { SqlVirtualMachineProperties model = BinaryData .fromString( - "{\"virtualMachineResourceId\":\"myzydagfuaxbez\",\"provisioningState\":\"uokktwhrdxwz\",\"sqlImageOffer\":\"q\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"o\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"cfsf\",\"clusterOperatorAccountPassword\":\"ymddys\",\"sqlServiceAccountPassword\":\"i\"},\"wsfcStaticIp\":\"xhqyudxorrqnb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Sunday\",\"maintenanceWindowStartingHour\":2041227856,\"maintenanceWindowDuration\":688230720},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":711383541,\"storageAccountUrl\":\"rm\",\"storageContainerName\":\"d\",\"storageAccessKey\":\"atkpnp\",\"password\":\"exxbczwtr\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Monday\",\"Tuesday\",\"Sunday\"],\"fullBackupStartTime\":79438477,\"fullBackupWindowHours\":1785940860,\"logBackupFrequency\":1882721753},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"lhzdobp\",\"azureKeyVaultUrl\":\"mflbv\",\"servicePrincipalName\":\"chrkcciwwzjuqk\",\"servicePrincipalSecret\":\"sa\"},\"serverConfigurationsManagementSettings\":{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PUBLIC\",\"port\":1163138760,\"sqlAuthUpdateUserName\":\"skghsauuimj\",\"sqlAuthUpdatePassword\":\"xieduugidyjrr\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":93185233,\"startingDeviceId\":499062312,\"diskConfigurationType\":\"NEW\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":true},\"sqlInstanceSettings\":{\"collation\":\"hocohslkev\",\"maxDop\":1452843037,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":1915206631,\"maxServerMemoryMB\":635098272,\"isLpimEnabled\":true,\"isIfiEnabled\":true}},\"storageConfigurationSettings\":{\"sqlDataSettings\":{\"luns\":[750094319,441262471],\"defaultFilePath\":\"ithlvmezyvshxm\"},\"sqlLogSettings\":{\"luns\":[2042967034,820071175,681165656],\"defaultFilePath\":\"igrxwburvjxxjn\"},\"sqlTempDbSettings\":{\"dataFileSize\":655244901,\"dataGrowth\":796522407,\"logFileSize\":1581089013,\"logGrowth\":1482419493,\"dataFileCount\":368872056,\"persistFolder\":true,\"persistFolderPath\":\"vudwtiukbldng\",\"luns\":[2138211196,1997522468,655680628],\"defaultFilePath\":\"z\"},\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true,\"schedule\":{\"enable\":false,\"weeklyInterval\":2112033193,\"monthlyOccurrence\":2000492920,\"dayOfWeek\":\"Sunday\",\"startTime\":\"typmrbpizcdrqjsd\"}},\"enableAutomaticUpgrade\":true}") + "{\"virtualMachineResourceId\":\"myzydagfuaxbez\",\"provisioningState\":\"uokktwhrdxwz\",\"sqlImageOffer\":\"q\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"o\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeBootstrapCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorCredentialPlaceholder\",\"sqlServiceAccountPassword\":\"i\"},\"wsfcStaticIp\":\"xhqyudxorrqnb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Sunday\",\"maintenanceWindowStartingHour\":2041227856,\"maintenanceWindowDuration\":688230720},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":711383541,\"storageAccountUrl\":\"rm\",\"storageContainerName\":\"d\",\"storageAccessKey\":\"fakeAutoBackupStorageCredentialPlaceholder\",\"password\":\"fakeAutoBackupCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Monday\",\"Tuesday\",\"Sunday\"],\"fullBackupStartTime\":79438477,\"fullBackupWindowHours\":1785940860,\"logBackupFrequency\":1882721753},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"lhzdobp\",\"azureKeyVaultUrl\":\"mflbv\",\"servicePrincipalName\":\"chrkcciwwzjuqk\",\"servicePrincipalSecret\":\"sa\"},\"serverConfigurationsManagementSettings\":{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PUBLIC\",\"port\":1163138760,\"sqlAuthUpdateUserName\":\"skghsauuimj\",\"sqlAuthUpdatePassword\":\"xieduugidyjrr\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":93185233,\"startingDeviceId\":499062312,\"diskConfigurationType\":\"NEW\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":true},\"sqlInstanceSettings\":{\"collation\":\"hocohslkev\",\"maxDop\":1452843037,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":1915206631,\"maxServerMemoryMB\":635098272,\"isLpimEnabled\":true,\"isIfiEnabled\":true}},\"storageConfigurationSettings\":{\"sqlDataSettings\":{\"luns\":[750094319,441262471],\"defaultFilePath\":\"ithlvmezyvshxm\"},\"sqlLogSettings\":{\"luns\":[2042967034,820071175,681165656],\"defaultFilePath\":\"igrxwburvjxxjn\"},\"sqlTempDbSettings\":{\"dataFileSize\":655244901,\"dataGrowth\":796522407,\"logFileSize\":1581089013,\"logGrowth\":1482419493,\"dataFileCount\":368872056,\"persistFolder\":true,\"persistFolderPath\":\"vudwtiukbldng\",\"luns\":[2138211196,1997522468,655680628],\"defaultFilePath\":\"z\"},\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true,\"schedule\":{\"enable\":false,\"weeklyInterval\":2112033193,\"monthlyOccurrence\":2000492920,\"dayOfWeek\":\"Sunday\",\"startTime\":\"typmrbpizcdrqjsd\"}},\"enableAutomaticUpgrade\":true}") .toObject(SqlVirtualMachineProperties.class); Assertions.assertEquals("myzydagfuaxbez", model.virtualMachineResourceId()); Assertions.assertEquals("q", model.sqlImageOffer()); @@ -53,8 +53,8 @@ public void testDeserialize() { Assertions.assertEquals(LeastPrivilegeMode.ENABLED, model.leastPrivilegeMode()); Assertions.assertEquals(SqlImageSku.WEB, model.sqlImageSku()); Assertions.assertEquals("o", model.sqlVirtualMachineGroupResourceId()); - Assertions.assertEquals("cfsf", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); - Assertions.assertEquals("ymddys", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); + Assertions.assertEquals("fakeBootstrapCredentialPlaceholder", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeOperatorCredentialPlaceholder", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); Assertions.assertEquals("i", model.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("xhqyudxorrqnb", model.wsfcStaticIp()); Assertions.assertEquals(true, model.autoPatchingSettings().enable()); @@ -66,8 +66,8 @@ public void testDeserialize() { Assertions.assertEquals(711383541, model.autoBackupSettings().retentionPeriod()); Assertions.assertEquals("rm", model.autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("d", model.autoBackupSettings().storageContainerName()); - Assertions.assertEquals("atkpnp", model.autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("exxbczwtr", model.autoBackupSettings().password()); + Assertions.assertEquals("fakeAutoBackupStorageCredentialPlaceholder", model.autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakeAutoBackupCredentialPlaceholder", model.autoBackupSettings().password()); Assertions.assertEquals(false, model.autoBackupSettings().backupSystemDbs()); Assertions.assertEquals(BackupScheduleType.MANUAL, model.autoBackupSettings().backupScheduleType()); Assertions.assertEquals(FullBackupFrequencyType.WEEKLY, model.autoBackupSettings().fullBackupFrequency()); @@ -183,8 +183,8 @@ public void testSerialize() { .withSqlVirtualMachineGroupResourceId("o") .withWsfcDomainCredentials( new WsfcDomainCredentials() - .withClusterBootstrapAccountPassword("cfsf") - .withClusterOperatorAccountPassword("ymddys") + .withClusterBootstrapAccountPassword("fakeBootstrapCredentialPlaceholder") + .withClusterOperatorAccountPassword("fakeOperatorCredentialPlaceholder") .withSqlServiceAccountPassword("i")) .withWsfcStaticIp("xhqyudxorrqnb") .withAutoPatchingSettings( @@ -200,8 +200,8 @@ public void testSerialize() { .withRetentionPeriod(711383541) .withStorageAccountUrl("rm") .withStorageContainerName("d") - .withStorageAccessKey("atkpnp") - .withPassword("exxbczwtr") + .withStorageAccessKey("fakeAutoBackupStorageCredentialPlaceholder") + .withPassword("fakeAutoBackupCredentialPlaceholder") .withBackupSystemDbs(false) .withBackupScheduleType(BackupScheduleType.MANUAL) .withFullBackupFrequency(FullBackupFrequencyType.WEEKLY) @@ -291,8 +291,8 @@ public void testSerialize() { Assertions.assertEquals(LeastPrivilegeMode.ENABLED, model.leastPrivilegeMode()); Assertions.assertEquals(SqlImageSku.WEB, model.sqlImageSku()); Assertions.assertEquals("o", model.sqlVirtualMachineGroupResourceId()); - Assertions.assertEquals("cfsf", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); - Assertions.assertEquals("ymddys", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); + Assertions.assertEquals("fakeBootstrapCredentialPlaceholder", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeOperatorCredentialPlaceholder", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); Assertions.assertEquals("i", model.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("xhqyudxorrqnb", model.wsfcStaticIp()); Assertions.assertEquals(true, model.autoPatchingSettings().enable()); @@ -304,8 +304,8 @@ public void testSerialize() { Assertions.assertEquals(711383541, model.autoBackupSettings().retentionPeriod()); Assertions.assertEquals("rm", model.autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("d", model.autoBackupSettings().storageContainerName()); - Assertions.assertEquals("atkpnp", model.autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("exxbczwtr", model.autoBackupSettings().password()); + Assertions.assertEquals("fakeAutoBackupStorageCredentialPlaceholder", model.autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakeAutoBackupCredentialPlaceholder", model.autoBackupSettings().password()); Assertions.assertEquals(false, model.autoBackupSettings().backupSystemDbs()); Assertions.assertEquals(BackupScheduleType.MANUAL, model.autoBackupSettings().backupScheduleType()); Assertions.assertEquals(FullBackupFrequencyType.WEEKLY, model.autoBackupSettings().fullBackupFrequency()); diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java index dab007eebea5..4e4f6217eb78 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java @@ -52,7 +52,7 @@ public void testCreateOrUpdate() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"y\",\"provisioningState\":\"Succeeded\",\"sqlImageOffer\":\"dvstkw\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"mtdaa\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"v\",\"clusterOperatorAccountPassword\":\"gpiohgwxrtfudxe\",\"sqlServiceAccountPassword\":\"gyqagvrvmnpkuk\"},\"wsfcStaticIp\":\"i\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Tuesday\",\"maintenanceWindowStartingHour\":261614569,\"maintenanceWindowDuration\":1772217773},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":false,\"retentionPeriod\":1453079674,\"storageAccountUrl\":\"szkkfoqre\",\"storageContainerName\":\"kzikfjawneaivxwc\",\"storageAccessKey\":\"lpcirelsf\",\"password\":\"enwabfatk\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1879278925,\"fullBackupWindowHours\":883019177,\"logBackupFrequency\":1246118617},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"hyoulpjr\",\"azureKeyVaultUrl\":\"ag\",\"servicePrincipalName\":\"vimjwos\",\"servicePrincipalSecret\":\"xitc\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"qgge\",\"tags\":{\"qidbqfatpxllrxcy\":\"nyga\",\"dmjsjqb\":\"moadsuvarmy\",\"yc\":\"hhyxxrw\"},\"id\":\"duhpk\",\"name\":\"kgymareqnajxqug\",\"type\":\"hky\"}"; + "{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"y\",\"provisioningState\":\"Succeeded\",\"sqlImageOffer\":\"dvstkw\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"mtdaa\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"v\",\"clusterOperatorAccountPassword\":\"fakeOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"i\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Tuesday\",\"maintenanceWindowStartingHour\":261614569,\"maintenanceWindowDuration\":1772217773},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":false,\"retentionPeriod\":1453079674,\"storageAccountUrl\":\"szkkfoqre\",\"storageContainerName\":\"kzikfjawneaivxwc\",\"storageAccessKey\":\"fakeAutoBackupStorageAccessKeyPlaceholder\",\"password\":\"fakeAutoBackupPasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1879278925,\"fullBackupWindowHours\":883019177,\"logBackupFrequency\":1246118617},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"hyoulpjr\",\"azureKeyVaultUrl\":\"ag\",\"servicePrincipalName\":\"vimjwos\",\"servicePrincipalSecret\":\"xitc\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"qgge\",\"tags\":{\"qidbqfatpxllrxcy\":\"nyga\",\"dmjsjqb\":\"moadsuvarmy\",\"yc\":\"hhyxxrw\"},\"id\":\"duhpk\",\"name\":\"kgymareqnajxqug\",\"type\":\"hky\"}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -113,8 +113,8 @@ public void testCreateOrUpdate() throws Exception { .withRetentionPeriod(1849555195) .withStorageAccountUrl("c") .withStorageContainerName("kqqzqioxiysu") - .withStorageAccessKey("zynkedya") - .withPassword("wyhqmibzyhwits") + .withStorageAccessKey("fakeStorageCredentialPlaceholder") + .withPassword("fakeCredentialPlaceholder") .withBackupSystemDbs(false) .withBackupScheduleType(BackupScheduleType.AUTOMATED) .withFullBackupFrequency(FullBackupFrequencyType.DAILY) @@ -150,8 +150,8 @@ public void testCreateOrUpdate() throws Exception { Assertions.assertEquals(SqlImageSku.WEB, response.sqlImageSku()); Assertions.assertEquals("mtdaa", response.sqlVirtualMachineGroupResourceId()); Assertions.assertEquals("v", response.wsfcDomainCredentials().clusterBootstrapAccountPassword()); - Assertions.assertEquals("gpiohgwxrtfudxe", response.wsfcDomainCredentials().clusterOperatorAccountPassword()); - Assertions.assertEquals("gyqagvrvmnpkuk", response.wsfcDomainCredentials().sqlServiceAccountPassword()); + Assertions.assertEquals("fakeOperatorAccountPasswordPlaceholder", response.wsfcDomainCredentials().clusterOperatorAccountPassword()); + Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", response.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("i", response.wsfcStaticIp()); Assertions.assertEquals(true, response.autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.TUESDAY, response.autoPatchingSettings().dayOfWeek()); @@ -162,8 +162,8 @@ public void testCreateOrUpdate() throws Exception { Assertions.assertEquals(1453079674, response.autoBackupSettings().retentionPeriod()); Assertions.assertEquals("szkkfoqre", response.autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("kzikfjawneaivxwc", response.autoBackupSettings().storageContainerName()); - Assertions.assertEquals("lpcirelsf", response.autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("enwabfatk", response.autoBackupSettings().password()); + Assertions.assertEquals("fakeAutoBackupStorageAccessKeyPlaceholder", response.autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakeAutoBackupPasswordPlaceholder", response.autoBackupSettings().password()); Assertions.assertEquals(true, response.autoBackupSettings().backupSystemDbs()); Assertions.assertEquals(BackupScheduleType.MANUAL, response.autoBackupSettings().backupScheduleType()); Assertions.assertEquals(FullBackupFrequencyType.WEEKLY, response.autoBackupSettings().fullBackupFrequency()); diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListByResourceGroupTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListByResourceGroupTests.java index 099785795d79..126cc696bfbc 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListByResourceGroupTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListByResourceGroupTests.java @@ -43,7 +43,7 @@ public void testListByResourceGroup() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"value\":[{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"odsotbobzdop\",\"provisioningState\":\"wvnhdldwmgx\",\"sqlImageOffer\":\"rslpmutwuoeg\",\"sqlServerLicenseType\":\"AHUB\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Developer\",\"sqlVirtualMachineGroupResourceId\":\"sluicpdggkzz\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"bmpaxmodfvu\",\"clusterOperatorAccountPassword\":\"yw\",\"sqlServiceAccountPassword\":\"pfvmwyhrfou\"},\"wsfcStaticIp\":\"taakc\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1814420357,\"maintenanceWindowDuration\":1349275484},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":true,\"retentionPeriod\":1989438546,\"storageAccountUrl\":\"smond\",\"storageContainerName\":\"quxvypomgkop\",\"storageAccessKey\":\"hojvpajqgxysmocm\",\"password\":\"fqvm\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1382848835,\"fullBackupWindowHours\":760338850,\"logBackupFrequency\":1009044014},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"tddckcb\",\"azureKeyVaultUrl\":\"ejrjxgciqibrho\",\"servicePrincipalName\":\"sdqrhzoymibmrq\",\"servicePrincipalSecret\":\"bahwfl\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"giwbwoenwa\",\"tags\":{\"xwbpokulpiuj\":\"tdtkcn\",\"obyu\":\"aasipqi\",\"dbutauvfbtkuwhh\":\"erpqlpqwcciuqg\"},\"id\":\"hykojoxafnndlpic\",\"name\":\"koymkcd\",\"type\":\"h\"}]}"; + "{\"value\":[{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"odsotbobzdop\",\"provisioningState\":\"wvnhdldwmgx\",\"sqlImageOffer\":\"rslpmutwuoeg\",\"sqlServerLicenseType\":\"AHUB\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Developer\",\"sqlVirtualMachineGroupResourceId\":\"sluicpdggkzz\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"taakc\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1814420357,\"maintenanceWindowDuration\":1349275484},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":true,\"retentionPeriod\":1989438546,\"storageAccountUrl\":\"smond\",\"storageContainerName\":\"quxvypomgkop\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1382848835,\"fullBackupWindowHours\":760338850,\"logBackupFrequency\":1009044014},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"tddckcb\",\"azureKeyVaultUrl\":\"ejrjxgciqibrho\",\"servicePrincipalName\":\"sdqrhzoymibmrq\",\"servicePrincipalSecret\":\"bahwfl\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"giwbwoenwa\",\"tags\":{\"xwbpokulpiuj\":\"tdtkcn\",\"obyu\":\"aasipqi\",\"dbutauvfbtkuwhh\":\"erpqlpqwcciuqg\"},\"id\":\"hykojoxafnndlpic\",\"name\":\"koymkcd\",\"type\":\"h\"}]}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -85,13 +85,14 @@ public void testListByResourceGroup() throws Exception { Assertions.assertEquals(SqlImageSku.DEVELOPER, response.iterator().next().sqlImageSku()); Assertions.assertEquals("sluicpdggkzz", response.iterator().next().sqlVirtualMachineGroupResourceId()); Assertions - .assertEquals( - "bmpaxmodfvu", response.iterator().next().wsfcDomainCredentials().clusterBootstrapAccountPassword()); + .assertEquals("fakeClusterBootstrapAccountPasswordPlaceholder", + response.iterator().next().wsfcDomainCredentials().clusterBootstrapAccountPassword()); Assertions - .assertEquals("yw", response.iterator().next().wsfcDomainCredentials().clusterOperatorAccountPassword()); + .assertEquals("fakeClusterOperatorAccountPasswordPlaceholder", + response.iterator().next().wsfcDomainCredentials().clusterOperatorAccountPassword()); Assertions .assertEquals( - "pfvmwyhrfou", response.iterator().next().wsfcDomainCredentials().sqlServiceAccountPassword()); + "fakeSqlServiceAccountPasswordPlaceholder", response.iterator().next().wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("taakc", response.iterator().next().wsfcStaticIp()); Assertions.assertEquals(false, response.iterator().next().autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.WEDNESDAY, response.iterator().next().autoPatchingSettings().dayOfWeek()); @@ -105,8 +106,8 @@ public void testListByResourceGroup() throws Exception { Assertions.assertEquals(1989438546, response.iterator().next().autoBackupSettings().retentionPeriod()); Assertions.assertEquals("smond", response.iterator().next().autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("quxvypomgkop", response.iterator().next().autoBackupSettings().storageContainerName()); - Assertions.assertEquals("hojvpajqgxysmocm", response.iterator().next().autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("fqvm", response.iterator().next().autoBackupSettings().password()); + Assertions.assertEquals("fakeStorageAccessKeyPlaceholder", response.iterator().next().autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakePasswordPlaceholder", response.iterator().next().autoBackupSettings().password()); Assertions.assertEquals(false, response.iterator().next().autoBackupSettings().backupSystemDbs()); Assertions .assertEquals( diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListBySqlVmGroupTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListBySqlVmGroupTests.java index 7c36a14d7c0f..176c4ce312b8 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListBySqlVmGroupTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListBySqlVmGroupTests.java @@ -43,7 +43,7 @@ public void testListBySqlVmGroup() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"value\":[{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"vkr\",\"provisioningState\":\"wbxqzvszjfau\",\"sqlImageOffer\":\"fdxxivetvtcqaqtd\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Developer\",\"sqlVirtualMachineGroupResourceId\":\"yslqbhsfx\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"ytkblmpew\",\"clusterOperatorAccountPassword\":\"fbkrvrnsvs\",\"sqlServiceAccountPassword\":\"johxcrsb\"},\"wsfcStaticIp\":\"vasrruvwb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Thursday\",\"maintenanceWindowStartingHour\":213257698,\"maintenanceWindowDuration\":540005244},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":true,\"retentionPeriod\":1282258802,\"storageAccountUrl\":\"srfbjfdtwss\",\"storageContainerName\":\"ftpvjzbexil\",\"storageAccessKey\":\"nfqqnvwp\",\"password\":\"taruoujmkcj\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[],\"fullBackupStartTime\":151199466,\"fullBackupWindowHours\":395045632,\"logBackupFrequency\":1463995661},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"ervnaenqpehi\",\"azureKeyVaultUrl\":\"oygmift\",\"servicePrincipalName\":\"zdnds\",\"servicePrincipalSecret\":\"nayqi\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"iertgccymvaolp\",\"tags\":{\"lzpswiydm\":\"qlfmmdnbb\",\"sadbz\":\"wyhzdx\"},\"id\":\"nvdfznuda\",\"name\":\"dvxzbncblylpst\",\"type\":\"bhhxsrzdzuc\"}]}"; + "{\"value\":[{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"vkr\",\"provisioningState\":\"wbxqzvszjfau\",\"sqlImageOffer\":\"fdxxivetvtcqaqtd\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Developer\",\"sqlVirtualMachineGroupResourceId\":\"yslqbhsfx\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"vasrruvwb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Thursday\",\"maintenanceWindowStartingHour\":213257698,\"maintenanceWindowDuration\":540005244},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":true,\"retentionPeriod\":1282258802,\"storageAccountUrl\":\"srfbjfdtwss\",\"storageContainerName\":\"ftpvjzbexil\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[],\"fullBackupStartTime\":151199466,\"fullBackupWindowHours\":395045632,\"logBackupFrequency\":1463995661},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"ervnaenqpehi\",\"azureKeyVaultUrl\":\"oygmift\",\"servicePrincipalName\":\"zdnds\",\"servicePrincipalSecret\":\"nayqi\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"iertgccymvaolp\",\"tags\":{\"lzpswiydm\":\"qlfmmdnbb\",\"sadbz\":\"wyhzdx\"},\"id\":\"nvdfznuda\",\"name\":\"dvxzbncblylpst\",\"type\":\"bhhxsrzdzuc\"}]}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -86,12 +86,12 @@ public void testListBySqlVmGroup() throws Exception { Assertions.assertEquals("yslqbhsfx", response.iterator().next().sqlVirtualMachineGroupResourceId()); Assertions .assertEquals( - "ytkblmpew", response.iterator().next().wsfcDomainCredentials().clusterBootstrapAccountPassword()); + "fakeClusterBootstrapAccountPasswordPlaceholder", response.iterator().next().wsfcDomainCredentials().clusterBootstrapAccountPassword()); Assertions .assertEquals( - "fbkrvrnsvs", response.iterator().next().wsfcDomainCredentials().clusterOperatorAccountPassword()); + "fakeClusterOperatorAccountPasswordPlaceholder", response.iterator().next().wsfcDomainCredentials().clusterOperatorAccountPassword()); Assertions - .assertEquals("johxcrsb", response.iterator().next().wsfcDomainCredentials().sqlServiceAccountPassword()); + .assertEquals("fakeSqlServiceAccountPasswordPlaceholder", response.iterator().next().wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("vasrruvwb", response.iterator().next().wsfcStaticIp()); Assertions.assertEquals(true, response.iterator().next().autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.THURSDAY, response.iterator().next().autoPatchingSettings().dayOfWeek()); @@ -104,8 +104,8 @@ public void testListBySqlVmGroup() throws Exception { Assertions.assertEquals(1282258802, response.iterator().next().autoBackupSettings().retentionPeriod()); Assertions.assertEquals("srfbjfdtwss", response.iterator().next().autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("ftpvjzbexil", response.iterator().next().autoBackupSettings().storageContainerName()); - Assertions.assertEquals("nfqqnvwp", response.iterator().next().autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("taruoujmkcj", response.iterator().next().autoBackupSettings().password()); + Assertions.assertEquals("fakeStorageAccessKeyPlaceholder", response.iterator().next().autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakePasswordPlaceholder", response.iterator().next().autoBackupSettings().password()); Assertions.assertEquals(true, response.iterator().next().autoBackupSettings().backupSystemDbs()); Assertions .assertEquals( diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListTests.java index 1a15e904458c..0d156e5a6fcb 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListTests.java @@ -43,7 +43,7 @@ public void testList() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"value\":[{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"evfiwjmygt\",\"provisioningState\":\"slswtm\",\"sqlImageOffer\":\"riofzpyqse\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"Full\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Enterprise\",\"sqlVirtualMachineGroupResourceId\":\"szhedplvw\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"bmwmbesldnkw\",\"clusterOperatorAccountPassword\":\"pp\",\"sqlServiceAccountPassword\":\"lcxog\"},\"wsfcStaticIp\":\"konzmnsik\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Friday\",\"maintenanceWindowStartingHour\":1625673068,\"maintenanceWindowDuration\":1175665004},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":true,\"retentionPeriod\":992785532,\"storageAccountUrl\":\"v\",\"storageContainerName\":\"ur\",\"storageAccessKey\":\"dkwobdagx\",\"password\":\"bqdxbx\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[],\"fullBackupStartTime\":442330150,\"fullBackupWindowHours\":90744470,\"logBackupFrequency\":299284831},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"iplbpodxunkbebxm\",\"azureKeyVaultUrl\":\"yyntwl\",\"servicePrincipalName\":\"qtkoievs\",\"servicePrincipalSecret\":\"tgqr\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":false},\"location\":\"vpbttd\",\"tags\":{\"xe\":\"rp\",\"bhjpglkfgohdne\":\"mnzb\",\"phsdyhto\":\"el\",\"v\":\"fikdowwqu\"},\"id\":\"zx\",\"name\":\"lvithhqzonosgg\",\"type\":\"hcohfwdsjnk\"}]}"; + "{\"value\":[{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"evfiwjmygt\",\"provisioningState\":\"slswtm\",\"sqlImageOffer\":\"riofzpyqse\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"Full\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Enterprise\",\"sqlVirtualMachineGroupResourceId\":\"szhedplvw\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"konzmnsik\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Friday\",\"maintenanceWindowStartingHour\":1625673068,\"maintenanceWindowDuration\":1175665004},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":true,\"retentionPeriod\":992785532,\"storageAccountUrl\":\"v\",\"storageContainerName\":\"ur\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[],\"fullBackupStartTime\":442330150,\"fullBackupWindowHours\":90744470,\"logBackupFrequency\":299284831},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"iplbpodxunkbebxm\",\"azureKeyVaultUrl\":\"yyntwl\",\"servicePrincipalName\":\"qtkoievs\",\"servicePrincipalSecret\":\"tgqr\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":false},\"location\":\"vpbttd\",\"tags\":{\"xe\":\"rp\",\"bhjpglkfgohdne\":\"mnzb\",\"phsdyhto\":\"el\",\"v\":\"fikdowwqu\"},\"id\":\"zx\",\"name\":\"lvithhqzonosgg\",\"type\":\"hcohfwdsjnk\"}]}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -85,11 +85,11 @@ public void testList() throws Exception { Assertions.assertEquals("szhedplvw", response.iterator().next().sqlVirtualMachineGroupResourceId()); Assertions .assertEquals( - "bmwmbesldnkw", response.iterator().next().wsfcDomainCredentials().clusterBootstrapAccountPassword()); + "fakeClusterBootstrapAccountPasswordPlaceholder", response.iterator().next().wsfcDomainCredentials().clusterBootstrapAccountPassword()); Assertions - .assertEquals("pp", response.iterator().next().wsfcDomainCredentials().clusterOperatorAccountPassword()); + .assertEquals("fakeClusterOperatorAccountPasswordPlaceholder", response.iterator().next().wsfcDomainCredentials().clusterOperatorAccountPassword()); Assertions - .assertEquals("lcxog", response.iterator().next().wsfcDomainCredentials().sqlServiceAccountPassword()); + .assertEquals("fakeSqlServiceAccountPasswordPlaceholder", response.iterator().next().wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("konzmnsik", response.iterator().next().wsfcStaticIp()); Assertions.assertEquals(true, response.iterator().next().autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.FRIDAY, response.iterator().next().autoPatchingSettings().dayOfWeek()); @@ -103,8 +103,8 @@ public void testList() throws Exception { Assertions.assertEquals(992785532, response.iterator().next().autoBackupSettings().retentionPeriod()); Assertions.assertEquals("v", response.iterator().next().autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("ur", response.iterator().next().autoBackupSettings().storageContainerName()); - Assertions.assertEquals("dkwobdagx", response.iterator().next().autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("bqdxbx", response.iterator().next().autoBackupSettings().password()); + Assertions.assertEquals("fakeStorageAccessKeyPlaceholder", response.iterator().next().autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakePasswordPlaceholder", response.iterator().next().autoBackupSettings().password()); Assertions.assertEquals(true, response.iterator().next().autoBackupSettings().backupSystemDbs()); Assertions .assertEquals( diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/WsfcDomainCredentialsTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/WsfcDomainCredentialsTests.java index 38bfb5323c94..3d9c0d553b45 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/WsfcDomainCredentialsTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/WsfcDomainCredentialsTests.java @@ -15,23 +15,27 @@ public void testDeserialize() { WsfcDomainCredentials model = BinaryData .fromString( - "{\"clusterBootstrapAccountPassword\":\"fyhxde\",\"clusterOperatorAccountPassword\":\"jzicwifsjt\",\"sqlServiceAccountPassword\":\"zfbishcbkhaj\"}") + "{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"}") .toObject(WsfcDomainCredentials.class); - Assertions.assertEquals("fyhxde", model.clusterBootstrapAccountPassword()); - Assertions.assertEquals("jzicwifsjt", model.clusterOperatorAccountPassword()); - Assertions.assertEquals("zfbishcbkhaj", model.sqlServiceAccountPassword()); + Assertions.assertEquals("fakeClusterBootstrapAccountPasswordPlaceholder", + model.clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeClusterOperatorAccountPasswordPlaceholder", + model.clusterOperatorAccountPassword()); + Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", model.sqlServiceAccountPassword()); } @Test public void testSerialize() { WsfcDomainCredentials model = new WsfcDomainCredentials() - .withClusterBootstrapAccountPassword("fyhxde") - .withClusterOperatorAccountPassword("jzicwifsjt") - .withSqlServiceAccountPassword("zfbishcbkhaj"); + .withClusterBootstrapAccountPassword("fakeClusterBootstrapAccountPasswordPlaceholder") + .withClusterOperatorAccountPassword("fakeClusterOperatorAccountPasswordPlaceholder") + .withSqlServiceAccountPassword("fakeSqlServiceAccountPasswordPlaceholder"); model = BinaryData.fromObject(model).toObject(WsfcDomainCredentials.class); - Assertions.assertEquals("fyhxde", model.clusterBootstrapAccountPassword()); - Assertions.assertEquals("jzicwifsjt", model.clusterOperatorAccountPassword()); - Assertions.assertEquals("zfbishcbkhaj", model.sqlServiceAccountPassword()); + Assertions.assertEquals("fakeClusterBootstrapAccountPasswordPlaceholder", + model.clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeClusterOperatorAccountPasswordPlaceholder", + model.clusterOperatorAccountPassword()); + Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", model.sqlServiceAccountPassword()); } } diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/WsfcDomainProfileTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/WsfcDomainProfileTests.java index 94fe34cac0c8..aff8194db34a 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/WsfcDomainProfileTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/WsfcDomainProfileTests.java @@ -16,16 +16,16 @@ public void testDeserialize() { WsfcDomainProfile model = BinaryData .fromString( - "{\"domainFqdn\":\"z\",\"ouPath\":\"iachbo\",\"clusterBootstrapAccount\":\"flnrosfqpteehzz\",\"clusterOperatorAccount\":\"pyqr\",\"sqlServiceAccount\":\"z\",\"fileShareWitnessPath\":\"pvswjdkirso\",\"storageAccountUrl\":\"qxhcrmn\",\"storageAccountPrimaryKey\":\"jtckwhdso\",\"clusterSubnetType\":\"SingleSubnet\"}") + "{\"domainFqdn\":\"z\",\"ouPath\":\"iachbo\",\"clusterBootstrapAccount\":\"fakeClusterBootstrapAccountPlaceholder\",\"clusterOperatorAccount\":\"pyqr\",\"sqlServiceAccount\":\"z\",\"fileShareWitnessPath\":\"pvswjdkirso\",\"storageAccountUrl\":\"qxhcrmn\",\"storageAccountPrimaryKey\":\"fakeStorageAccountPrimaryKeyPlaceholder\",\"clusterSubnetType\":\"SingleSubnet\"}") .toObject(WsfcDomainProfile.class); Assertions.assertEquals("z", model.domainFqdn()); Assertions.assertEquals("iachbo", model.ouPath()); - Assertions.assertEquals("flnrosfqpteehzz", model.clusterBootstrapAccount()); + Assertions.assertEquals("fakeClusterBootstrapAccountPlaceholder", model.clusterBootstrapAccount()); Assertions.assertEquals("pyqr", model.clusterOperatorAccount()); Assertions.assertEquals("z", model.sqlServiceAccount()); Assertions.assertEquals("pvswjdkirso", model.fileShareWitnessPath()); Assertions.assertEquals("qxhcrmn", model.storageAccountUrl()); - Assertions.assertEquals("jtckwhdso", model.storageAccountPrimaryKey()); + Assertions.assertEquals("fakeStorageAccountPrimaryKeyPlaceholder", model.storageAccountPrimaryKey()); Assertions.assertEquals(ClusterSubnetType.SINGLE_SUBNET, model.clusterSubnetType()); } @@ -35,22 +35,22 @@ public void testSerialize() { new WsfcDomainProfile() .withDomainFqdn("z") .withOuPath("iachbo") - .withClusterBootstrapAccount("flnrosfqpteehzz") + .withClusterBootstrapAccount("fakeClusterBootstrapAccountPlaceholder") .withClusterOperatorAccount("pyqr") .withSqlServiceAccount("z") .withFileShareWitnessPath("pvswjdkirso") .withStorageAccountUrl("qxhcrmn") - .withStorageAccountPrimaryKey("jtckwhdso") + .withStorageAccountPrimaryKey("fakeStorageAccountPrimaryKeyPlaceholder") .withClusterSubnetType(ClusterSubnetType.SINGLE_SUBNET); model = BinaryData.fromObject(model).toObject(WsfcDomainProfile.class); Assertions.assertEquals("z", model.domainFqdn()); Assertions.assertEquals("iachbo", model.ouPath()); - Assertions.assertEquals("flnrosfqpteehzz", model.clusterBootstrapAccount()); + Assertions.assertEquals("fakeClusterBootstrapAccountPlaceholder", model.clusterBootstrapAccount()); Assertions.assertEquals("pyqr", model.clusterOperatorAccount()); Assertions.assertEquals("z", model.sqlServiceAccount()); Assertions.assertEquals("pvswjdkirso", model.fileShareWitnessPath()); Assertions.assertEquals("qxhcrmn", model.storageAccountUrl()); - Assertions.assertEquals("jtckwhdso", model.storageAccountPrimaryKey()); + Assertions.assertEquals("fakeStorageAccountPrimaryKeyPlaceholder", model.storageAccountPrimaryKey()); Assertions.assertEquals(ClusterSubnetType.SINGLE_SUBNET, model.clusterSubnetType()); } } diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.groovy similarity index 100% rename from sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java rename to sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.groovy diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/specialized/HelperTest.groovy b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/specialized/HelperTest.groovy index 7b6370639181..d9c337e5b97a 100644 --- a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/specialized/HelperTest.groovy +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/specialized/HelperTest.groovy @@ -68,7 +68,7 @@ class HelperTest extends APISpec { def "URLParser"() { when: - def parts = BlobUrlParts.parse(new URL("http://host/container/" + originalBlobName + "?snapshot=snapshot&sv=" + Constants.SAS_SERVICE_VERSION + "&sr=c&sp=r&sig=sD3fPKLnFKZUjnSV4qA%2FXoJOqsmDfNfxWcZ7kPtLc0I%3D")) + def parts = BlobUrlParts.parse(new URL("http://host/container/" + originalBlobName + "?snapshot=snapshot&sv=" + Constants.SAS_SERVICE_VERSION + "&sr=c&sp=r&sig=" + FakeCredentialInTest.fakeSignaturePlaceholder)) then: parts.getScheme() == "http" From 346df97c486a16aed5c0754b7f1931fba43d7066 Mon Sep 17 00:00:00 2001 From: shafang Date: Tue, 25 Oct 2022 23:06:02 -0700 Subject: [PATCH 08/21] more updates --- .../UsernamePasswordCredentialTest.java | 4 +- .../SAMPLE.md | 80 +++++++++---------- .../VirtualMachinesResetPasswordSamples.java | 2 +- .../servicelinker/CreateServiceLinker.java | 4 +- ...bstractAzureServiceConfigurationTests.java | 4 +- .../SqlVirtualMachineInnerTests.java | 38 +++++---- .../SqlVirtualMachinePropertiesTests.java | 4 +- ...SqlVirtualMachinesCreateOrUpdateTests.java | 17 ++-- 8 files changed, 81 insertions(+), 72 deletions(-) diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index 922e3853bb62..9652ec37a03d 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -246,14 +246,14 @@ public void testInvalidMultiTenantAuth() { @Test public void testValidMultiTenantAuth() { // setup - String username = "fakeNamePlaceholder"; + String fakeUsernamePlaceholder = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().username(username).password(password).tenantId("tenant") + new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(password).tenantId("tenant") .clientId(clientId).additionallyAllowedTenants(IdentityUtil.ALL_TENANTS).build(); StepVerifier.create(credential.getToken(request)) diff --git a/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md b/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md index a85cd557b0d2..9a21235add10 100644 --- a/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md +++ b/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md @@ -90,7 +90,7 @@ public final class ImagesCreateOrUpdateSamples { manager .images() .define("image1") - .withExistingLabPlan("testrg123", "testlabplan") + .withExistingLabPlan("fakeResourceGroupPlaceholder", "testlabplan") .withEnabledState(EnableState.ENABLED) .create(); } @@ -113,7 +113,7 @@ public final class ImagesGetSamples { * @param manager Entry point to LabServicesManager. */ public static void getImage(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.images().getWithResponse("testrg123", "testlabplan", "image1", Context.NONE); + manager.images().getWithResponse("fakeResourceGroupPlaceholder", "testlabplan", "image1", Context.NONE); } } ``` @@ -134,7 +134,7 @@ public final class ImagesListByLabPlanSamples { * @param manager Entry point to LabServicesManager. */ public static void listImages(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.images().listByLabPlan("testrg123", "testlabplan", null, Context.NONE); + manager.images().listByLabPlan("fakeResourceGroupPlaceholder", "testlabplan", null, Context.NONE); } } ``` @@ -158,7 +158,7 @@ public final class ImagesUpdateSamples { */ public static void patchImage(com.azure.resourcemanager.labservices.LabServicesManager manager) { Image resource = - manager.images().getWithResponse("testrg123", "testlabplan", "image1", Context.NONE).getValue(); + manager.images().getWithResponse("fakeResourceGroupPlaceholder", "testlabplan", "image1", Context.NONE).getValue(); resource.update().withEnabledState(EnableState.ENABLED).apply(); } } @@ -191,7 +191,7 @@ public final class LabPlansCreateOrUpdateSamples { .labPlans() .define("testlabplan") .withRegion("westus") - .withExistingResourceGroup("testrg123") + .withExistingResourceGroup("fakeResourceGroupPlaceholder") .withDefaultConnectionProfile( new ConnectionProfile() .withWebSshAccess(ConnectionType.NONE) @@ -209,9 +209,9 @@ public final class LabPlansCreateOrUpdateSamples { .withDefaultNetworkProfile( new LabPlanNetworkProfile() .withSubnetId( - "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default")) + "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/fakeResourceGroupPlaceholder/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default")) .withSharedGalleryId( - "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Compute/galleries/testsig") + "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/fakeResourceGroupPlaceholder/providers/Microsoft.Compute/galleries/testsig") .withSupportInfo( new SupportInfo() .withUrl("help.contoso.com") @@ -239,7 +239,7 @@ public final class LabPlansDeleteSamples { * @param manager Entry point to LabServicesManager. */ public static void deleteLabPlan(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.labPlans().delete("testrg123", "testlabplan", Context.NONE); + manager.labPlans().delete("fakeResourceGroupPlaceholder", "testlabplan", Context.NONE); } } ``` @@ -260,7 +260,7 @@ public final class LabPlansGetByResourceGroupSamples { * @param manager Entry point to LabServicesManager. */ public static void getLabPlan(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.labPlans().getByResourceGroupWithResponse("testrg123", "testlabplan", Context.NONE); + manager.labPlans().getByResourceGroupWithResponse("fakeResourceGroupPlaceholder", "testlabplan", Context.NONE); } } ``` @@ -302,7 +302,7 @@ public final class LabPlansListByResourceGroupSamples { * @param manager Entry point to LabServicesManager. */ public static void listResourceGroupLabPlans(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.labPlans().listByResourceGroup("testrg123", Context.NONE); + manager.labPlans().listByResourceGroup("fakeResourceGroupPlaceholder", Context.NONE); } } ``` @@ -327,12 +327,12 @@ public final class LabPlansSaveImageSamples { manager .labPlans() .saveImage( - "testrg123", + "fakeResourceGroupPlaceholder", "testlabplan", new SaveImageBody() .withName("Test Image") .withLabVirtualMachineId( - "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.LabServices/labs/testlab/virtualMachines/template"), + "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/fakeResourceGroupPlaceholder/providers/Microsoft.LabServices/labs/testlab/virtualMachines/template"), Context.NONE); } } @@ -358,7 +358,7 @@ public final class LabPlansUpdateSamples { */ public static void patchLabPlan(com.azure.resourcemanager.labservices.LabServicesManager manager) { LabPlan resource = - manager.labPlans().getByResourceGroupWithResponse("testrg123", "testlabplan", Context.NONE).getValue(); + manager.labPlans().getByResourceGroupWithResponse("fakeResourceGroupPlaceholder", "testlabplan", Context.NONE).getValue(); resource .update() .withDefaultConnectionProfile( @@ -405,11 +405,11 @@ public final class LabsCreateOrUpdateSamples { .labs() .define("testlab") .withRegion("westus") - .withExistingResourceGroup("testrg123") + .withExistingResourceGroup("fakeResourceGroupPlaceholder") .withNetworkProfile( new LabNetworkProfile() .withSubnetId( - "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default")) + "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/fakeResourceGroupPlaceholder/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default")) .withAutoShutdownProfile( new AutoShutdownProfile() .withShutdownOnDisconnect(EnableState.ENABLED) @@ -441,7 +441,7 @@ public final class LabsCreateOrUpdateSamples { .withAdminUser(new Credentials().withUsername("test-user"))) .withSecurityProfile(new SecurityProfile().withOpenAccess(EnableState.DISABLED)) .withLabPlanId( - "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.LabServices/labPlans/testlabplan") + "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/fakeResourceGroupPlaceholder/providers/Microsoft.LabServices/labPlans/testlabplan") .withTitle("Test Lab") .withDescription("This is a test lab.") .create(); @@ -465,7 +465,7 @@ public final class LabsDeleteSamples { * @param manager Entry point to LabServicesManager. */ public static void deleteLab(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.labs().delete("testrg123", "testlab", Context.NONE); + manager.labs().delete("fakeResourceGroupPlaceholder", "testlab", Context.NONE); } } ``` @@ -486,7 +486,7 @@ public final class LabsGetByResourceGroupSamples { * @param manager Entry point to LabServicesManager. */ public static void getLab(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.labs().getByResourceGroupWithResponse("testrg123", "testlab", Context.NONE); + manager.labs().getByResourceGroupWithResponse("fakeResourceGroupPlaceholder", "testlab", Context.NONE); } } ``` @@ -528,7 +528,7 @@ public final class LabsListByResourceGroupSamples { * @param manager Entry point to LabServicesManager. */ public static void listResourceGroupLabs(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.labs().listByResourceGroup("testrg123", Context.NONE); + manager.labs().listByResourceGroup("fakeResourceGroupPlaceholder", Context.NONE); } } ``` @@ -549,7 +549,7 @@ public final class LabsPublishSamples { * @param manager Entry point to LabServicesManager. */ public static void publishLab(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.labs().publish("testrg123", "testlab", Context.NONE); + manager.labs().publish("fakeResourceGroupPlaceholder", "testlab", Context.NONE); } } ``` @@ -570,7 +570,7 @@ public final class LabsSyncGroupSamples { * @param manager Entry point to LabServicesManager. */ public static void syncLab(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.labs().syncGroup("testrg123", "testlab", Context.NONE); + manager.labs().syncGroup("fakeResourceGroupPlaceholder", "testlab", Context.NONE); } } ``` @@ -594,7 +594,7 @@ public final class LabsUpdateSamples { * @param manager Entry point to LabServicesManager. */ public static void patchLab(com.azure.resourcemanager.labservices.LabServicesManager manager) { - Lab resource = manager.labs().getByResourceGroupWithResponse("testrg123", "testlab", Context.NONE).getValue(); + Lab resource = manager.labs().getByResourceGroupWithResponse("fakeResourceGroupPlaceholder", "testlab", Context.NONE).getValue(); resource.update().withSecurityProfile(new SecurityProfile().withOpenAccess(EnableState.ENABLED)).apply(); } } @@ -663,7 +663,7 @@ public final class SchedulesCreateOrUpdateSamples { manager .schedules() .define("schedule1") - .withExistingLab("testrg123", "testlab") + .withExistingLab("fakeResourceGroupPlaceholder", "testlab") .withStartAt(OffsetDateTime.parse("2020-05-26T12:00:00Z")) .withStopAt(OffsetDateTime.parse("2020-05-26T18:00:00Z")) .withRecurrencePattern( @@ -694,7 +694,7 @@ public final class SchedulesDeleteSamples { * @param manager Entry point to LabServicesManager. */ public static void deleteSchedule(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.schedules().delete("testrg123", "testlab", "schedule1", Context.NONE); + manager.schedules().delete("fakeResourceGroupPlaceholder", "testlab", "schedule1", Context.NONE); } } ``` @@ -715,7 +715,7 @@ public final class SchedulesGetSamples { * @param manager Entry point to LabServicesManager. */ public static void getSchedule(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.schedules().getWithResponse("testrg123", "testlab", "schedule1", Context.NONE); + manager.schedules().getWithResponse("fakeResourceGroupPlaceholder", "testlab", "schedule1", Context.NONE); } } ``` @@ -736,7 +736,7 @@ public final class SchedulesListByLabSamples { * @param manager Entry point to LabServicesManager. */ public static void getListSchedule(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.schedules().listByLab("testrg123", "testlab", null, Context.NONE); + manager.schedules().listByLab("fakeResourceGroupPlaceholder", "testlab", null, Context.NONE); } } ``` @@ -762,7 +762,7 @@ public final class SchedulesUpdateSamples { */ public static void patchSchedule(com.azure.resourcemanager.labservices.LabServicesManager manager) { Schedule resource = - manager.schedules().getWithResponse("testrg123", "testlab", "schedule1", Context.NONE).getValue(); + manager.schedules().getWithResponse("fakeResourceGroupPlaceholder", "testlab", "schedule1", Context.NONE).getValue(); resource .update() .withRecurrencePattern( @@ -836,7 +836,7 @@ public final class UsersCreateOrUpdateSamples { manager .users() .define("testuser") - .withExistingLab("testrg123", "testlab") + .withExistingLab("fakeResourceGroupPlaceholder", "testlab") .withEmail("testuser@contoso.com") .withAdditionalUsageQuota(Duration.parse("PT10H")) .create(); @@ -860,7 +860,7 @@ public final class UsersDeleteSamples { * @param manager Entry point to LabServicesManager. */ public static void deleteUser(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.users().delete("testrg123", "testlab", "testuser", Context.NONE); + manager.users().delete("fakeResourceGroupPlaceholder", "testlab", "testuser", Context.NONE); } } ``` @@ -881,7 +881,7 @@ public final class UsersGetSamples { * @param manager Entry point to LabServicesManager. */ public static void getUser(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.users().getWithResponse("testrg123", "testlab", "testuser", Context.NONE); + manager.users().getWithResponse("fakeResourceGroupPlaceholder", "testlab", "testuser", Context.NONE); } } ``` @@ -906,7 +906,7 @@ public final class UsersInviteSamples { manager .users() .invite( - "testrg123", + "fakeResourceGroupPlaceholder", "testlab", "testuser", new InviteBody().withText("Invitation to lab testlab"), @@ -931,7 +931,7 @@ public final class UsersListByLabSamples { * @param manager Entry point to LabServicesManager. */ public static void listUser(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.users().listByLab("testrg123", "testlab", null, Context.NONE); + manager.users().listByLab("fakeResourceGroupPlaceholder", "testlab", null, Context.NONE); } } ``` @@ -954,7 +954,7 @@ public final class UsersUpdateSamples { * @param manager Entry point to LabServicesManager. */ public static void patchUser(com.azure.resourcemanager.labservices.LabServicesManager manager) { - User resource = manager.users().getWithResponse("testrg123", "testlab", "testuser", Context.NONE).getValue(); + User resource = manager.users().getWithResponse("fakeResourceGroupPlaceholder", "testlab", "testuser", Context.NONE).getValue(); resource.update().withAdditionalUsageQuota(Duration.parse("PT10H")).apply(); } } @@ -976,7 +976,7 @@ public final class VirtualMachinesGetSamples { * @param manager Entry point to LabServicesManager. */ public static void getVirtualMachine(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.virtualMachines().getWithResponse("testrg123", "testlab", "template", Context.NONE); + manager.virtualMachines().getWithResponse("fakeResourceGroupPlaceholder", "testlab", "template", Context.NONE); } } ``` @@ -997,7 +997,7 @@ public final class VirtualMachinesListByLabSamples { * @param manager Entry point to LabServicesManager. */ public static void listVirtualMachine(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.virtualMachines().listByLab("testrg123", "testlab", null, Context.NONE); + manager.virtualMachines().listByLab("fakeResourceGroupPlaceholder", "testlab", null, Context.NONE); } } ``` @@ -1018,7 +1018,7 @@ public final class VirtualMachinesRedeploySamples { * @param manager Entry point to LabServicesManager. */ public static void redeployVirtualMachine(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.virtualMachines().redeploy("testrg123", "testlab", "template", Context.NONE); + manager.virtualMachines().redeploy("fakeResourceGroupPlaceholder", "testlab", "template", Context.NONE); } } ``` @@ -1039,7 +1039,7 @@ public final class VirtualMachinesReimageSamples { * @param manager Entry point to LabServicesManager. */ public static void reimageVirtualMachine(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.virtualMachines().reimage("testrg123", "testlab", "template", Context.NONE); + manager.virtualMachines().reimage("fakeResourceGroupPlaceholder", "testlab", "template", Context.NONE); } } ``` @@ -1064,7 +1064,7 @@ public final class VirtualMachinesResetPasswordSamples { manager .virtualMachines() .resetPassword( - "testrg132", + "fakeCredentialPlaceholder", "testlab", "template", new ResetPasswordBody().withUsername("example-username").withPassword("example-password"), @@ -1089,7 +1089,7 @@ public final class VirtualMachinesStartSamples { * @param manager Entry point to LabServicesManager. */ public static void startVirtualMachine(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.virtualMachines().start("testrg123", "testlab", "template", Context.NONE); + manager.virtualMachines().start("fakeResourceGroupPlaceholder", "testlab", "template", Context.NONE); } } ``` @@ -1110,7 +1110,7 @@ public final class VirtualMachinesStopSamples { * @param manager Entry point to LabServicesManager. */ public static void stopVirtualMachine(com.azure.resourcemanager.labservices.LabServicesManager manager) { - manager.virtualMachines().stop("testrg123", "testlab", "template", Context.NONE); + manager.virtualMachines().stop("fakeResourceGroupPlaceholder", "testlab", "template", Context.NONE); } } ``` diff --git a/sdk/labservices/azure-resourcemanager-labservices/src/samples/java/com/azure/resourcemanager/labservices/generated/VirtualMachinesResetPasswordSamples.java b/sdk/labservices/azure-resourcemanager-labservices/src/samples/java/com/azure/resourcemanager/labservices/generated/VirtualMachinesResetPasswordSamples.java index 7a2ffa37833f..b4341a4a02d2 100644 --- a/sdk/labservices/azure-resourcemanager-labservices/src/samples/java/com/azure/resourcemanager/labservices/generated/VirtualMachinesResetPasswordSamples.java +++ b/sdk/labservices/azure-resourcemanager-labservices/src/samples/java/com/azure/resourcemanager/labservices/generated/VirtualMachinesResetPasswordSamples.java @@ -21,7 +21,7 @@ public static void resetPasswordVirtualMachine(com.azure.resourcemanager.labserv manager .virtualMachines() .resetPassword( - "testrg123", + "fakeResourceGroupNamePlaceholder", "testlab", "template", new ResetPasswordBody().withUsername("example-username").withPassword("example-password"), diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/samples/java/com/azure/resourcemanager/servicelinker/CreateServiceLinker.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/samples/java/com/azure/resourcemanager/servicelinker/CreateServiceLinker.java index 3bdace912e4c..1e5fbb9bd19d 100644 --- a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/samples/java/com/azure/resourcemanager/servicelinker/CreateServiceLinker.java +++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/samples/java/com/azure/resourcemanager/servicelinker/CreateServiceLinker.java @@ -75,8 +75,8 @@ private static void createSpringCloudAndSQLConnection(AzureResourceManager azure String springAppName = "app" + randomString(8); String sqlServerName = "sqlserver" + randomString(8); String sqlDatabaseName = "sqldb" + randomString(8); - String sqlUserName = "sql" + randomString(8); - String sqlPassword = "5$Ql" + randomString(8); + String sqlUserName = "fakeNamePlaceholder" + randomString(8); + String sqlPassword = "fakeCredentialPlaceholder" + randomString(8); SpringService springService = azureResourceManager.springServices().define(springServiceName) .withRegion(region) diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java index 13fdcb1ef7d4..7673cf36c215 100644 --- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java +++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java @@ -76,8 +76,8 @@ protected void usGovCloudShouldWorkWithUsernamePasswordCredential() { .withPropertyValues( getPropertyPrefix() + ".profile.cloud-type=AZURE_US_GOVERNMENT", getPropertyPrefix() + ".credential.client-id=fake-client-id", - getPropertyPrefix() + ".credential.username=123", - getPropertyPrefix() + ".credential.password=123" + getPropertyPrefix() + ".credential.username=fakeNamePlaceholder", + getPropertyPrefix() + ".credential.password=fakeCredentialPlaceholder" ) .withConfiguration(AutoConfigurations.of( AzureTokenCredentialAutoConfiguration.class, diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java index ff6068d37228..590f86609967 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java @@ -37,7 +37,7 @@ public void testDeserialize() { SqlVirtualMachineInner model = BinaryData .fromString( - "{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"scxaq\",\"provisioningState\":\"ochcbonqvpkvl\",\"sqlImageOffer\":\"njeaseipheofloke\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"NoAgent\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Express\",\"sqlVirtualMachineGroupResourceId\":\"tgrhpdjpjumas\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"hb\",\"sqlServiceAccountPassword\":\"fakeCredentialPlaceholder\"},\"wsfcStaticIp\":\"dudgwdslfhot\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1733107709,\"maintenanceWindowDuration\":991937495},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":1625524147,\"storageAccountUrl\":\"dehxnltyfsoppu\",\"storageContainerName\":\"esnzwde\",\"storageAccessKey\":\"avo\",\"password\":\"fakeCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Sunday\",\"Saturday\",\"Friday\",\"Wednesday\"],\"fullBackupStartTime\":766815263,\"fullBackupWindowHours\":247911704,\"logBackupFrequency\":175400299},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"slazjdyg\",\"azureKeyVaultUrl\":\"tjixhbkuofqweyk\",\"servicePrincipalName\":\"enevfyexfwhybci\",\"servicePrincipalSecret\":\"yvdcsitynnaa\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":true},\"location\":\"jrefovgmkqsle\",\"tags\":{\"k\":\"xyqj\",\"jh\":\"attpngjcrcczsq\",\"ysou\":\"mdajv\",\"canoaeupf\":\"q\"},\"id\":\"yhltrpmopjmcm\",\"name\":\"tuo\",\"type\":\"thfuiuaodsfcpkvx\"}") + "{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"scxaq\",\"provisioningState\":\"ochcbonqvpkvl\",\"sqlImageOffer\":\"njeaseipheofloke\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"NoAgent\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Express\",\"sqlVirtualMachineGroupResourceId\":\"tgrhpdjpjumas\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"dudgwdslfhot\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1733107709,\"maintenanceWindowDuration\":991937495},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":1625524147,\"storageAccountUrl\":\"dehxnltyfsoppu\",\"storageContainerName\":\"esnzwde\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakeAutoBackupPasswordPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Sunday\",\"Saturday\",\"Friday\",\"Wednesday\"],\"fullBackupStartTime\":766815263,\"fullBackupWindowHours\":247911704,\"logBackupFrequency\":175400299},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"slazjdyg\",\"azureKeyVaultUrl\":\"tjixhbkuofqweyk\",\"servicePrincipalName\":\"enevfyexfwhybci\",\"servicePrincipalSecret\":\"yvdcsitynnaa\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":true},\"location\":\"jrefovgmkqsle\",\"tags\":{\"k\":\"xyqj\",\"jh\":\"attpngjcrcczsq\",\"ysou\":\"mdajv\",\"canoaeupf\":\"q\"},\"id\":\"yhltrpmopjmcm\",\"name\":\"tuo\",\"type\":\"thfuiuaodsfcpkvx\"}") .toObject(SqlVirtualMachineInner.class); Assertions.assertEquals("jrefovgmkqsle", model.location()); Assertions.assertEquals("xyqj", model.tags().get("k")); @@ -49,9 +49,12 @@ public void testDeserialize() { Assertions.assertEquals(LeastPrivilegeMode.ENABLED, model.leastPrivilegeMode()); Assertions.assertEquals(SqlImageSku.EXPRESS, model.sqlImageSku()); Assertions.assertEquals("tgrhpdjpjumas", model.sqlVirtualMachineGroupResourceId()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); - Assertions.assertEquals("hb", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.wsfcDomainCredentials().sqlServiceAccountPassword()); + Assertions.assertEquals("fakeClusterBootstrapAccountPasswordPlaceholder", + model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeClusterOperatorAccountPasswordPlaceholder", + model.wsfcDomainCredentials().clusterOperatorAccountPassword()); + Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", + model.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("dudgwdslfhot", model.wsfcStaticIp()); Assertions.assertEquals(false, model.autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.WEDNESDAY, model.autoPatchingSettings().dayOfWeek()); @@ -62,8 +65,8 @@ public void testDeserialize() { Assertions.assertEquals(1625524147, model.autoBackupSettings().retentionPeriod()); Assertions.assertEquals("dehxnltyfsoppu", model.autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("esnzwde", model.autoBackupSettings().storageContainerName()); - Assertions.assertEquals("avo", model.autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.autoBackupSettings().password()); + Assertions.assertEquals("fakeStorageAccessKeyPlaceholder", model.autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakeAutoBackupPasswordPlaceholder", model.autoBackupSettings().password()); Assertions.assertEquals(false, model.autoBackupSettings().backupSystemDbs()); Assertions.assertEquals(BackupScheduleType.MANUAL, model.autoBackupSettings().backupScheduleType()); Assertions.assertEquals(FullBackupFrequencyType.WEEKLY, model.autoBackupSettings().fullBackupFrequency()); @@ -101,9 +104,9 @@ public void testSerialize() { .withSqlVirtualMachineGroupResourceId("tgrhpdjpjumas") .withWsfcDomainCredentials( new WsfcDomainCredentials() - .withClusterBootstrapAccountPassword("fakeCredentialPlaceholder") - .withClusterOperatorAccountPassword("hb") - .withSqlServiceAccountPassword("fakeCredentialPlaceholder")) + .withClusterBootstrapAccountPassword("fakeClusterBootstrapAccountPasswordPlaceholder") + .withClusterOperatorAccountPassword("fakeClusterOperatorAccountPasswordPlaceholder") + .withSqlServiceAccountPassword("fakeSqlServiceAccountPasswordPlaceholder")) .withWsfcStaticIp("dudgwdslfhot") .withAutoPatchingSettings( new AutoPatchingSettings() @@ -118,8 +121,8 @@ public void testSerialize() { .withRetentionPeriod(1625524147) .withStorageAccountUrl("dehxnltyfsoppu") .withStorageContainerName("esnzwde") - .withStorageAccessKey("avo") - .withPassword("fakeCredentialPlaceholder") + .withStorageAccessKey("fakeStorageAccessKeyPlaceholder") + .withPassword("fakeAutoBackupPasswordPlaceholder") .withBackupSystemDbs(false) .withBackupScheduleType(BackupScheduleType.MANUAL) .withFullBackupFrequency(FullBackupFrequencyType.WEEKLY) @@ -159,9 +162,12 @@ public void testSerialize() { Assertions.assertEquals(LeastPrivilegeMode.ENABLED, model.leastPrivilegeMode()); Assertions.assertEquals(SqlImageSku.EXPRESS, model.sqlImageSku()); Assertions.assertEquals("tgrhpdjpjumas", model.sqlVirtualMachineGroupResourceId()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); - Assertions.assertEquals("hb", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.wsfcDomainCredentials().sqlServiceAccountPassword()); + Assertions.assertEquals("fakeClusterBootstrapAccountPasswordPlaceholder", + model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeClusterOperatorAccountPasswordPlaceholder", + model.wsfcDomainCredentials().clusterOperatorAccountPassword()); + Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", + model.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("dudgwdslfhot", model.wsfcStaticIp()); Assertions.assertEquals(false, model.autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.WEDNESDAY, model.autoPatchingSettings().dayOfWeek()); @@ -172,8 +178,8 @@ public void testSerialize() { Assertions.assertEquals(1625524147, model.autoBackupSettings().retentionPeriod()); Assertions.assertEquals("dehxnltyfsoppu", model.autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("esnzwde", model.autoBackupSettings().storageContainerName()); - Assertions.assertEquals("avo", model.autoBackupSettings().storageAccessKey()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.autoBackupSettings().password()); + Assertions.assertEquals("fakeStorageAccessKeyPlaceholder", model.autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakeAutoBackupPasswordPlaceholder", model.autoBackupSettings().password()); Assertions.assertEquals(false, model.autoBackupSettings().backupSystemDbs()); Assertions.assertEquals(BackupScheduleType.MANUAL, model.autoBackupSettings().backupScheduleType()); Assertions.assertEquals(FullBackupFrequencyType.WEEKLY, model.autoBackupSettings().fullBackupFrequency()); diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java index 1330163870c4..2ad56699257e 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java @@ -44,7 +44,7 @@ public void testDeserialize() { SqlVirtualMachineProperties model = BinaryData .fromString( - "{\"virtualMachineResourceId\":\"myzydagfuaxbez\",\"provisioningState\":\"uokktwhrdxwz\",\"sqlImageOffer\":\"q\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"o\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeBootstrapCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorCredentialPlaceholder\",\"sqlServiceAccountPassword\":\"i\"},\"wsfcStaticIp\":\"xhqyudxorrqnb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Sunday\",\"maintenanceWindowStartingHour\":2041227856,\"maintenanceWindowDuration\":688230720},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":711383541,\"storageAccountUrl\":\"rm\",\"storageContainerName\":\"d\",\"storageAccessKey\":\"fakeAutoBackupStorageCredentialPlaceholder\",\"password\":\"fakeAutoBackupCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Monday\",\"Tuesday\",\"Sunday\"],\"fullBackupStartTime\":79438477,\"fullBackupWindowHours\":1785940860,\"logBackupFrequency\":1882721753},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"lhzdobp\",\"azureKeyVaultUrl\":\"mflbv\",\"servicePrincipalName\":\"chrkcciwwzjuqk\",\"servicePrincipalSecret\":\"sa\"},\"serverConfigurationsManagementSettings\":{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PUBLIC\",\"port\":1163138760,\"sqlAuthUpdateUserName\":\"skghsauuimj\",\"sqlAuthUpdatePassword\":\"xieduugidyjrr\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":93185233,\"startingDeviceId\":499062312,\"diskConfigurationType\":\"NEW\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":true},\"sqlInstanceSettings\":{\"collation\":\"hocohslkev\",\"maxDop\":1452843037,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":1915206631,\"maxServerMemoryMB\":635098272,\"isLpimEnabled\":true,\"isIfiEnabled\":true}},\"storageConfigurationSettings\":{\"sqlDataSettings\":{\"luns\":[750094319,441262471],\"defaultFilePath\":\"ithlvmezyvshxm\"},\"sqlLogSettings\":{\"luns\":[2042967034,820071175,681165656],\"defaultFilePath\":\"igrxwburvjxxjn\"},\"sqlTempDbSettings\":{\"dataFileSize\":655244901,\"dataGrowth\":796522407,\"logFileSize\":1581089013,\"logGrowth\":1482419493,\"dataFileCount\":368872056,\"persistFolder\":true,\"persistFolderPath\":\"vudwtiukbldng\",\"luns\":[2138211196,1997522468,655680628],\"defaultFilePath\":\"z\"},\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true,\"schedule\":{\"enable\":false,\"weeklyInterval\":2112033193,\"monthlyOccurrence\":2000492920,\"dayOfWeek\":\"Sunday\",\"startTime\":\"typmrbpizcdrqjsd\"}},\"enableAutomaticUpgrade\":true}") + "{\"virtualMachineResourceId\":\"myzydagfuaxbez\",\"provisioningState\":\"uokktwhrdxwz\",\"sqlImageOffer\":\"q\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"o\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeBootstrapCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorCredentialPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"xhqyudxorrqnb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Sunday\",\"maintenanceWindowStartingHour\":2041227856,\"maintenanceWindowDuration\":688230720},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":711383541,\"storageAccountUrl\":\"rm\",\"storageContainerName\":\"d\",\"storageAccessKey\":\"fakeAutoBackupStorageCredentialPlaceholder\",\"password\":\"fakeAutoBackupCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Monday\",\"Tuesday\",\"Sunday\"],\"fullBackupStartTime\":79438477,\"fullBackupWindowHours\":1785940860,\"logBackupFrequency\":1882721753},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"lhzdobp\",\"azureKeyVaultUrl\":\"mflbv\",\"servicePrincipalName\":\"chrkcciwwzjuqk\",\"servicePrincipalSecret\":\"sa\"},\"serverConfigurationsManagementSettings\":{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PUBLIC\",\"port\":1163138760,\"sqlAuthUpdateUserName\":\"skghsauuimj\",\"sqlAuthUpdatePassword\":\"xieduugidyjrr\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":93185233,\"startingDeviceId\":499062312,\"diskConfigurationType\":\"NEW\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":true},\"sqlInstanceSettings\":{\"collation\":\"hocohslkev\",\"maxDop\":1452843037,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":1915206631,\"maxServerMemoryMB\":635098272,\"isLpimEnabled\":true,\"isIfiEnabled\":true}},\"storageConfigurationSettings\":{\"sqlDataSettings\":{\"luns\":[750094319,441262471],\"defaultFilePath\":\"ithlvmezyvshxm\"},\"sqlLogSettings\":{\"luns\":[2042967034,820071175,681165656],\"defaultFilePath\":\"igrxwburvjxxjn\"},\"sqlTempDbSettings\":{\"dataFileSize\":655244901,\"dataGrowth\":796522407,\"logFileSize\":1581089013,\"logGrowth\":1482419493,\"dataFileCount\":368872056,\"persistFolder\":true,\"persistFolderPath\":\"vudwtiukbldng\",\"luns\":[2138211196,1997522468,655680628],\"defaultFilePath\":\"z\"},\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true,\"schedule\":{\"enable\":false,\"weeklyInterval\":2112033193,\"monthlyOccurrence\":2000492920,\"dayOfWeek\":\"Sunday\",\"startTime\":\"typmrbpizcdrqjsd\"}},\"enableAutomaticUpgrade\":true}") .toObject(SqlVirtualMachineProperties.class); Assertions.assertEquals("myzydagfuaxbez", model.virtualMachineResourceId()); Assertions.assertEquals("q", model.sqlImageOffer()); @@ -185,7 +185,7 @@ public void testSerialize() { new WsfcDomainCredentials() .withClusterBootstrapAccountPassword("fakeBootstrapCredentialPlaceholder") .withClusterOperatorAccountPassword("fakeOperatorCredentialPlaceholder") - .withSqlServiceAccountPassword("i")) + .withSqlServiceAccountPassword("fakeSqlServiceAccountPasswordPlaceholder")) .withWsfcStaticIp("xhqyudxorrqnb") .withAutoPatchingSettings( new AutoPatchingSettings() diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java index 4e4f6217eb78..202364c40307 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java @@ -52,7 +52,7 @@ public void testCreateOrUpdate() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"y\",\"provisioningState\":\"Succeeded\",\"sqlImageOffer\":\"dvstkw\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"mtdaa\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"v\",\"clusterOperatorAccountPassword\":\"fakeOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"i\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Tuesday\",\"maintenanceWindowStartingHour\":261614569,\"maintenanceWindowDuration\":1772217773},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":false,\"retentionPeriod\":1453079674,\"storageAccountUrl\":\"szkkfoqre\",\"storageContainerName\":\"kzikfjawneaivxwc\",\"storageAccessKey\":\"fakeAutoBackupStorageAccessKeyPlaceholder\",\"password\":\"fakeAutoBackupPasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1879278925,\"fullBackupWindowHours\":883019177,\"logBackupFrequency\":1246118617},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"hyoulpjr\",\"azureKeyVaultUrl\":\"ag\",\"servicePrincipalName\":\"vimjwos\",\"servicePrincipalSecret\":\"xitc\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"qgge\",\"tags\":{\"qidbqfatpxllrxcy\":\"nyga\",\"dmjsjqb\":\"moadsuvarmy\",\"yc\":\"hhyxxrw\"},\"id\":\"duhpk\",\"name\":\"kgymareqnajxqug\",\"type\":\"hky\"}"; + "{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"y\",\"provisioningState\":\"Succeeded\",\"sqlImageOffer\":\"dvstkw\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"mtdaa\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"i\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Tuesday\",\"maintenanceWindowStartingHour\":261614569,\"maintenanceWindowDuration\":1772217773},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":false,\"retentionPeriod\":1453079674,\"storageAccountUrl\":\"szkkfoqre\",\"storageContainerName\":\"kzikfjawneaivxwc\",\"storageAccessKey\":\"fakeAutoBackupStorageAccessKeyPlaceholder\",\"password\":\"fakeAutoBackupPasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1879278925,\"fullBackupWindowHours\":883019177,\"logBackupFrequency\":1246118617},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"hyoulpjr\",\"azureKeyVaultUrl\":\"ag\",\"servicePrincipalName\":\"vimjwos\",\"servicePrincipalSecret\":\"xitc\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"qgge\",\"tags\":{\"qidbqfatpxllrxcy\":\"nyga\",\"dmjsjqb\":\"moadsuvarmy\",\"yc\":\"hhyxxrw\"},\"id\":\"duhpk\",\"name\":\"kgymareqnajxqug\",\"type\":\"hky\"}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -96,9 +96,9 @@ public void testCreateOrUpdate() throws Exception { .withSqlImageSku(SqlImageSku.ENTERPRISE) .withWsfcDomainCredentials( new WsfcDomainCredentials() - .withClusterBootstrapAccountPassword("ibwwiftohqkv") - .withClusterOperatorAccountPassword("vksgplsaknynfsy") - .withSqlServiceAccountPassword("jphuopxodlqi")) + .withClusterBootstrapAccountPassword("fakeClusterBootstrapAccountPasswordPlaceholder") + .withClusterOperatorAccountPassword("fakeClusterOperatorAccountPasswordPlaceholder") + .withSqlServiceAccountPassword("fakeSqlServiceAccountPasswordPlaceholder")) .withWsfcStaticIp("torzih") .withAutoPatchingSettings( new AutoPatchingSettings() @@ -150,8 +150,10 @@ public void testCreateOrUpdate() throws Exception { Assertions.assertEquals(SqlImageSku.WEB, response.sqlImageSku()); Assertions.assertEquals("mtdaa", response.sqlVirtualMachineGroupResourceId()); Assertions.assertEquals("v", response.wsfcDomainCredentials().clusterBootstrapAccountPassword()); - Assertions.assertEquals("fakeOperatorAccountPasswordPlaceholder", response.wsfcDomainCredentials().clusterOperatorAccountPassword()); - Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", response.wsfcDomainCredentials().sqlServiceAccountPassword()); + Assertions.assertEquals("fakeOperatorAccountPasswordPlaceholder", + response.wsfcDomainCredentials().clusterOperatorAccountPassword()); + Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", + response.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("i", response.wsfcStaticIp()); Assertions.assertEquals(true, response.autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.TUESDAY, response.autoPatchingSettings().dayOfWeek()); @@ -162,7 +164,8 @@ public void testCreateOrUpdate() throws Exception { Assertions.assertEquals(1453079674, response.autoBackupSettings().retentionPeriod()); Assertions.assertEquals("szkkfoqre", response.autoBackupSettings().storageAccountUrl()); Assertions.assertEquals("kzikfjawneaivxwc", response.autoBackupSettings().storageContainerName()); - Assertions.assertEquals("fakeAutoBackupStorageAccessKeyPlaceholder", response.autoBackupSettings().storageAccessKey()); + Assertions.assertEquals("fakeAutoBackupStorageAccessKeyPlaceholder", + response.autoBackupSettings().storageAccessKey()); Assertions.assertEquals("fakeAutoBackupPasswordPlaceholder", response.autoBackupSettings().password()); Assertions.assertEquals(true, response.autoBackupSettings().backupSystemDbs()); Assertions.assertEquals(BackupScheduleType.MANUAL, response.autoBackupSettings().backupScheduleType()); From 5a110aee8a7e4449742e6a492abb402f5d747dc6 Mon Sep 17 00:00:00 2001 From: shafang Date: Wed, 26 Oct 2022 10:49:19 -0700 Subject: [PATCH 09/21] add well known fake names --- eng/CredScanSuppression.json | 8 +++ .../azure/core/http/ProxyOptionsTests.java | 58 +++++++++---------- .../credential/JavaDocCodeSnippets.java | 8 +-- .../UsernamePasswordCredentialTest.java | 36 ++++++------ .../NotificationHookTestBase.java | 6 +- .../WarDeployTests.canDeployMultipleWars.json | 4 +- .../WebAppsMsiTests.canCRUDWebAppWithMsi.json | 4 +- ...ests.canCRUDWebAppWithUserAssignedMsi.json | 4 +- .../ZipDeployTests.canZipDeployFunction.json | 4 +- .../jdbc/mysql/test-resources.json | 2 +- .../SqlVirtualMachinePropertiesTests.java | 4 +- 11 files changed, 73 insertions(+), 65 deletions(-) diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index 0196a7d303b3..502e54562a60 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -8,6 +8,14 @@ ], "_justification": "Secret used by test code, it is fake." }, + { + "placeholder": [ + "username", + "-----BEGIN PRIVATE KEY-----", + "administratorLoginPassword" + ], + "_justification": "Well known names." + }, { "placeholder": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "_justification": "SHA-256 encrypted random data generated at test time." diff --git a/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java b/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java index 5bbc77fbc854..96a70e07a72a 100644 --- a/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java +++ b/sdk/core/azure-core/src/test/java/com/azure/core/http/ProxyOptionsTests.java @@ -41,8 +41,8 @@ public class ProxyOptionsTests { private static final String HTTP = "http"; private static final String PROXY_HOST = "localhost"; - private static final String PROXY_USER = "fakeProxyUserPlaceholder"; - private static final String PROXY_PASSWORD = "fakeCredentialPlaceholder"; + private static final String FAKE_PROXY_USER_PLACEHOLDER = "fakeProxyUserPlaceholder"; + private static final String FAKE_PROXY_PASSWORD_PLACEHOLDER = "fakeProxyPasswordPlaceholder"; private static final String NON_PROXY_HOSTS = "notlocalhost"; private static final String JAVA_SYSTEM_PROXY_PREREQUISITE = "java.net.useSystemProxies"; @@ -61,15 +61,15 @@ public class ProxyOptionsTests { private static final String AZURE_HTTPS_PROXY_HOST_ONLY = String.format("%s://%s", HTTPS, PROXY_HOST); private static final String AZURE_HTTP_PROXY_HOST_ONLY = String.format("%s://%s", HTTP, PROXY_HOST); - private static final String AZURE_HTTPS_PROXY_WITH_USERNAME = String.format("%s://%s@%s", HTTPS, PROXY_USER, + private static final String AZURE_HTTPS_PROXY_WITH_USERNAME = String.format("%s://%s@%s", HTTPS, FAKE_PROXY_USER_PLACEHOLDER, PROXY_HOST); - private static final String AZURE_HTTP_PROXY_WITH_USERNAME = String.format("%s://%s@%s", HTTP, PROXY_USER, + private static final String AZURE_HTTP_PROXY_WITH_USERNAME = String.format("%s://%s@%s", HTTP, FAKE_PROXY_USER_PLACEHOLDER, PROXY_HOST); - private static final String AZURE_HTTPS_PROXY_WITH_USER_AND_PASS = String.format("%s://%s:%s@%s", HTTPS, PROXY_USER, - PROXY_PASSWORD, PROXY_HOST); - private static final String AZURE_HTTP_PROXY_WITH_USER_AND_PASS = String.format("%s://%s:%s@%s", HTTP, PROXY_USER, - PROXY_PASSWORD, PROXY_HOST); + private static final String AZURE_HTTPS_PROXY_WITH_USER_AND_PASS = String.format("%s://%s:%s@%s", HTTPS, FAKE_PROXY_USER_PLACEHOLDER, + FAKE_PROXY_PASSWORD_PLACEHOLDER, PROXY_HOST); + private static final String AZURE_HTTP_PROXY_WITH_USER_AND_PASS = String.format("%s://%s:%s@%s", HTTP, FAKE_PROXY_USER_PLACEHOLDER, + FAKE_PROXY_PASSWORD_PLACEHOLDER, PROXY_HOST); private static final ConfigurationSource EMPTY_SOURCE = new TestConfigurationSource(); /** * Tests that loading a basic configuration from the environment works. @@ -145,8 +145,8 @@ public void mixedExplicitAndEnvironmentConfigurationIsNotSupported() { .put("https.proxyPort", "42"); Configuration configuration = new ConfigurationBuilder(EMPTY_SOURCE, systemProps, EMPTY_SOURCE) - .putProperty("foo.http.proxy.username", PROXY_USER) - .putProperty("http.proxy.password", PROXY_PASSWORD) + .putProperty("foo.http.proxy.username", FAKE_PROXY_USER_PLACEHOLDER) + .putProperty("http.proxy.password", FAKE_PROXY_PASSWORD_PLACEHOLDER) .putProperty("foo.http.proxy.hostname", PROXY_HOST) .buildSection("foo"); @@ -157,8 +157,8 @@ public void mixedExplicitAndEnvironmentConfigurationIsNotSupported() { assertEquals(Proxy.Type.HTTP, proxyOptions.getType().toProxyType()); assertEquals(PROXY_HOST, proxyOptions.getAddress().getHostName()); assertEquals(443, proxyOptions.getAddress().getPort()); - assertEquals(PROXY_USER, proxyOptions.getUsername()); - assertEquals(PROXY_PASSWORD, proxyOptions.getPassword()); + assertEquals(FAKE_PROXY_USER_PLACEHOLDER, proxyOptions.getUsername()); + assertEquals(FAKE_PROXY_PASSWORD_PLACEHOLDER, proxyOptions.getPassword()); } @Test @@ -166,8 +166,8 @@ public void envConfigurationInExplicit() { Configuration configuration = new ConfigurationBuilder() .putProperty("https.proxyHost", PROXY_HOST) .putProperty("https.proxyPort", "8080") - .putProperty("http.proxy.username", PROXY_USER) - .putProperty("http.proxy.password", PROXY_PASSWORD) + .putProperty("http.proxy.username", FAKE_PROXY_USER_PLACEHOLDER) + .putProperty("http.proxy.password", FAKE_PROXY_PASSWORD_PLACEHOLDER) .buildSection("foo"); ProxyOptions proxyOptions = fromConfiguration(configuration, true); @@ -180,8 +180,8 @@ public void envConfigurationInExplicit() { public void defaultHttpPortNull(String port) { ConfigurationBuilder configBuilder = new ConfigurationBuilder() .putProperty("http.proxy.hostname", PROXY_HOST) - .putProperty("http.proxy.username", PROXY_USER) - .putProperty("http.proxy.password", PROXY_PASSWORD); + .putProperty("http.proxy.username", FAKE_PROXY_USER_PLACEHOLDER) + .putProperty("http.proxy.password", FAKE_PROXY_PASSWORD_PLACEHOLDER); if (port != null) { configBuilder.putProperty("http.proxy.port", port); @@ -198,8 +198,8 @@ public void defaultHttpPortNull(String port) { public void invalidHttpPortExplicitConfigThrows(String port) { Configuration configuration = new ConfigurationBuilder() .putProperty("http.proxy.hostname", PROXY_HOST) - .putProperty("http.proxy.username", PROXY_USER) - .putProperty("http.proxy.password", PROXY_PASSWORD) + .putProperty("http.proxy.username", FAKE_PROXY_USER_PLACEHOLDER) + .putProperty("http.proxy.password", FAKE_PROXY_PASSWORD_PLACEHOLDER) .putProperty("http.proxy.port", port) .build(); @@ -252,7 +252,7 @@ private static Stream loadFromEnvironmentSupplier() { // Complete Azure HTTPS proxy. Arguments.of(setJavaSystemProxyPrerequisiteToTrue( new TestConfigurationSource().put(Configuration.PROPERTY_HTTPS_PROXY, AZURE_HTTPS_PROXY_WITH_USER_AND_PASS)), - PROXY_HOST, 443, PROXY_USER, PROXY_PASSWORD, null), + PROXY_HOST, 443, FAKE_PROXY_USER_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER, null), // Azure HTTPS proxy with non-proxying hosts. Arguments.of(setJavaSystemProxyPrerequisiteToTrue( @@ -274,7 +274,7 @@ private static Stream loadFromEnvironmentSupplier() { // Complete Azure HTTP proxy. Arguments.of(setJavaSystemProxyPrerequisiteToTrue( new TestConfigurationSource().put(Configuration.PROPERTY_HTTP_PROXY, AZURE_HTTP_PROXY_WITH_USER_AND_PASS)), - PROXY_HOST, 80, PROXY_USER, PROXY_PASSWORD, null), + PROXY_HOST, 80, FAKE_PROXY_USER_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER, null), // Azure HTTP proxy with non-proxying hosts. Arguments.of(setJavaSystemProxyPrerequisiteToTrue( @@ -295,12 +295,12 @@ private static Stream loadFromEnvironmentSupplier() { PROXY_HOST, 443, null, null, null), // Username only Java HTTPS proxy. - Arguments.of(createJavaEnvConfiguration(443, PROXY_USER, null, null, true), + Arguments.of(createJavaEnvConfiguration(443, FAKE_PROXY_USER_PLACEHOLDER, null, null, true), PROXY_HOST, 443, null, null, null), // Complete Java HTTPS proxy. - Arguments.of(createJavaEnvConfiguration(443, PROXY_USER, PROXY_PASSWORD, null, true), - PROXY_HOST, 443, PROXY_USER, PROXY_PASSWORD, null), + Arguments.of(createJavaEnvConfiguration(443, FAKE_PROXY_USER_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER, null, true), + PROXY_HOST, 443, FAKE_PROXY_USER_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER, null), // Java HTTPS proxy with non-proxying hosts. Arguments.of(createJavaEnvConfiguration(443, null, null, NON_PROXY_HOSTS, true), @@ -311,12 +311,12 @@ private static Stream loadFromEnvironmentSupplier() { PROXY_HOST, 80, null, null, null), // Username only Java HTTP proxy. - Arguments.of(createJavaEnvConfiguration(80, PROXY_USER, null, null, false), + Arguments.of(createJavaEnvConfiguration(80, FAKE_PROXY_USER_PLACEHOLDER, null, null, false), PROXY_HOST, 80, null, null, null), // Complete Java HTTP proxy. - Arguments.of(createJavaEnvConfiguration(80, PROXY_USER, PROXY_PASSWORD, null, false), - PROXY_HOST, 80, PROXY_USER, PROXY_PASSWORD, null), + Arguments.of(createJavaEnvConfiguration(80, FAKE_PROXY_USER_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER, null, false), + PROXY_HOST, 80, FAKE_PROXY_USER_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER, null), // Java HTTP proxy with non-proxying hosts. Arguments.of(createJavaEnvConfiguration(80, null, null, NON_PROXY_HOSTS, false), @@ -338,12 +338,12 @@ private static Stream loadFromExplicitConfigurationSupplier() { PROXY_HOST, 443, null, null, null), // Username only Java HTTPS proxy. - Arguments.of(createExplicitConfiguration(443, PROXY_USER, null, null), + Arguments.of(createExplicitConfiguration(443, FAKE_PROXY_USER_PLACEHOLDER, null, null), PROXY_HOST, 443, null, null, null), // Complete Java HTTPS proxy. - Arguments.of(createExplicitConfiguration(443, PROXY_USER, PROXY_PASSWORD, null), - PROXY_HOST, 443, PROXY_USER, PROXY_PASSWORD, null), + Arguments.of(createExplicitConfiguration(443, FAKE_PROXY_USER_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER, null), + PROXY_HOST, 443, FAKE_PROXY_USER_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER, null), // Java HTTPS proxy with non-proxying hosts. Arguments.of(createExplicitConfiguration(443, null, null, NON_PROXY_HOSTS), diff --git a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java index 6cf7871c4404..79da08546171 100644 --- a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java +++ b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java @@ -26,8 +26,8 @@ public final class JavaDocCodeSnippets { private String tenantId = System.getenv("AZURE_TENANT_ID"); private String clientId = System.getenv("AZURE_CLIENT_ID"); private String clientSecret = System.getenv("AZURE_CLIENT_SECRET"); - private String username = "fakeNamePlaceholder"; - private String password = "fakeCredentialPlaceholder"; + private String fakeUserNamePlaceholder = "fakeNamePlaceholder"; + private String fakePasswordPlaceholder = "fakeCredentialPlaceholder"; /** * Method to insert code snippets for {@link ClientSecretCredential} @@ -80,8 +80,8 @@ public void chainedTokenCredentialCodeSnippets() { // BEGIN: com.azure.identity.credential.chainedtokencredential.construct UsernamePasswordCredential usernamePasswordCredential = new UsernamePasswordCredentialBuilder() .clientId(clientId) - .username(username) - .password(password) + .username(fakeUserNamePlaceholder) + .password(fakePasswordPlaceholder) .build(); InteractiveBrowserCredential interactiveBrowserCredential = new InteractiveBrowserCredentialBuilder() .clientId(clientId) diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index 9652ec37a03d..8199e756915b 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -36,7 +36,7 @@ public class UsernamePasswordCredentialTest { @Test public void testValidUserCredential() throws Exception { // setup - String username = "fakeNamePlaceholder"; + String fakeUsernamePlaceholder = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; String token2 = "token2"; @@ -47,7 +47,7 @@ public void testValidUserCredential() throws Exception { // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request1, username, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); + when(identityClient.authenticateWithUsernamePassword(request1, fakeUsernamePlaceholder, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> { TokenRequestContext argument = (TokenRequestContext) invocation.getArguments()[0]; @@ -62,7 +62,7 @@ public void testValidUserCredential() throws Exception { })) { // test UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).password(password).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).password(password).build(); StepVerifier.create(credential.getToken(request1)) .expectNextMatches(accessToken -> token1.equals(accessToken.getToken()) && expiresAt.getSecond() == accessToken.getExpiresAt().getSecond()) @@ -105,20 +105,20 @@ public void testValidUserCredential() throws Exception { @Test public void testInvalidUserCredential() throws Exception { // setup - String username = "fakeNamePlaceholder"; + String fakeUsernamePlaceholder = "fakeNamePlaceholder"; String badPassword = "Password"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request, username, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); + when(identityClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); when(identityClient.getIdentityClientOptions()).thenReturn(new IdentityClientOptions()); })) { // test UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).password(badPassword).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).password(badPassword).build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(t -> t instanceof MsalServiceException && "bad credential".equals(t.getMessage())) .verify(); @@ -126,7 +126,7 @@ public void testInvalidUserCredential() throws Exception { } try (MockedConstruction identityClientMock = mockConstruction(IdentitySyncClient.class, (identitySyncClient, context) -> { - when(identitySyncClient.authenticateWithUsernamePassword(request, username, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); + when(identitySyncClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); when(identitySyncClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); when(identitySyncClient.getIdentityClientOptions()).thenReturn(new IdentityClientOptions()); @@ -146,7 +146,7 @@ public void testInvalidUserCredential() throws Exception { @Test public void testInvalidParameters() throws Exception { // setup - String username = "fakeNamePlaceholder"; + String fakeUsernamePlaceholder = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -154,19 +154,19 @@ public void testInvalidParameters() throws Exception { // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request, username, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresOn)); + when(identityClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresOn)); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); })) { // test try { - new UsernamePasswordCredentialBuilder().username(username).password(password).build(); + new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(password).build(); fail(); } catch (IllegalArgumentException e) { Assert.assertTrue(e.getMessage().contains("clientId")); } try { - new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).build(); fail(); } catch (IllegalArgumentException e) { Assert.assertTrue(e.getMessage().contains("password")); @@ -184,7 +184,7 @@ public void testInvalidParameters() throws Exception { @Test public void testValidAuthenticate() throws Exception { // setup - String username = "fakeNamePlaceholder"; + String fakeUsernamePlaceholder = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -192,13 +192,13 @@ public void testValidAuthenticate() throws Exception { // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(eq(request1), eq(username), eq(password))) + when(identityClient.authenticateWithUsernamePassword(eq(request1), eq(fakeUsernamePlaceholder), eq(password))) .thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); })) { // test UsernamePasswordCredential credential = new UsernamePasswordCredentialBuilder().clientId(clientId) - .username(username).password(password).build(); + .username(fakeUsernamePlaceholder).password(password).build(); StepVerifier.create(credential.authenticate(request1)) .expectNextMatches(authenticationRecord -> authenticationRecord.getAuthority() .equals("http://login.microsoftonline.com") @@ -212,14 +212,14 @@ public void testValidAuthenticate() throws Exception { @Test public void testAdditionalTenantNoImpact() { // setup - String username = "fakeNamePlaceholder"; + String fakeUsernamePlaceholder = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().username(username).password(password) + new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(password) .clientId(clientId).additionallyAllowedTenants("RANDOM").build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(e -> e.getCause() instanceof MsalServiceException) @@ -229,14 +229,14 @@ public void testAdditionalTenantNoImpact() { @Test public void testInvalidMultiTenantAuth() { // setup - String username = "fakeNamePlaceholder"; + String fakeUsernamePlaceholder = "fakeNamePlaceholder"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().tenantId("tenant").username(username).password(password) + new UsernamePasswordCredentialBuilder().tenantId("tenant").username(fakeUsernamePlaceholder).password(password) .clientId(clientId).build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(e -> e instanceof ClientAuthenticationException && (e.getCause().getMessage().startsWith("The current credential is not configured to"))) diff --git a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java index 0df140a24574..2d2e746da35f 100644 --- a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java +++ b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java @@ -65,15 +65,15 @@ protected static class CreateWebHookInput { String endpoint = "https://httpbin.org/post"; String description = "alert_us!"; String externalLink = "https://github.com/Azure/azure-sdk-for-java/wiki"; - String userName = "fakeNamePlaceholder"; - String password = "fakeCredentialPlaceholder"; + String fakeUserNamePlaceholder = "fakeUserNamePlaceholder"; + String fakePasswordPlaceholder = "fakeCredentialPlaceholder"; HttpHeaders httpHeaders = new HttpHeaders() .put("x-contoso-id", "123") .put("x-contoso-name", "contoso"); WebNotificationHook hook = new WebNotificationHook(name, endpoint) .setDescription(description) .setExternalLink(externalLink) - .setUserCredentials(userName, password) + .setUserCredentials(fakeUserNamePlaceholder, fakePasswordPlaceholder) .setHttpHeaders(httpHeaders); } diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WarDeployTests.canDeployMultipleWars.json b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WarDeployTests.canDeployMultipleWars.json index 8d5e0911f6bc..d493bfb87f07 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WarDeployTests.canDeployMultipleWars.json +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WarDeployTests.canDeployMultipleWars.json @@ -170,7 +170,7 @@ "X-AspNet-Version" : "4.0.30319", "Expires" : "-1", "x-ms-request-id" : "b4be7f07-b8bf-4fa4-87b4-892f2383c224", - "Body" : "", + "Body" : "", "Content-Type" : "application/xml", "X-Powered-By" : "ASP.NET" }, @@ -247,4 +247,4 @@ "Exception" : null } ], "variables" : [ "webapp-655058a08", "javacsmrg03408682", "javawebapp-655058a08plan536641" ] -} \ No newline at end of file +} diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WebAppsMsiTests.canCRUDWebAppWithMsi.json b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WebAppsMsiTests.canCRUDWebAppWithMsi.json index 579f29085ecc..2ca35eff4855 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WebAppsMsiTests.canCRUDWebAppWithMsi.json +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WebAppsMsiTests.canCRUDWebAppWithMsi.json @@ -206,7 +206,7 @@ "content-type" : "application/xml", "cache-control" : "no-cache", "x-ms-request-id" : "06f128fc-df24-4c21-85fa-7e1fc5490c33", - "Body" : "" + "Body" : "" } }, { "Method" : "DELETE", @@ -257,4 +257,4 @@ } } ], "variables" : [ "java-webapp-396048", "javacsmrgdb2680588", "java-vault-b8599627", "javacsmrg28995695f", "java-webapp-396048plana21166054", "5d507665-6a49-41f1-899d-b801daf49681", "72ac9208-c6ce-4778-a5fe-378ecd5fa4b9" ] -} \ No newline at end of file +} diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WebAppsMsiTests.canCRUDWebAppWithUserAssignedMsi.json b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WebAppsMsiTests.canCRUDWebAppWithUserAssignedMsi.json index bc01a8bd03d1..7b1725200312 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WebAppsMsiTests.canCRUDWebAppWithUserAssignedMsi.json +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/WebAppsMsiTests.canCRUDWebAppWithUserAssignedMsi.json @@ -680,7 +680,7 @@ "content-type" : "application/xml", "cache-control" : "no-cache", "x-ms-request-id" : "1e010b19-82d5-45ed-aa75-83ea382bf2e7", - "Body" : "" + "Body" : "" } }, { "Method" : "DELETE", @@ -730,4 +730,4 @@ } } ], "variables" : [ "java-webapp-950371", "javacsmrg6d159438f", "java-vault-dfc68171", "javacsmrg3fb33152b", "msi-idddc18949", "msi-id5e854684", "2776ddba-18da-4bcb-a5db-9a0f02cea20a", "a9906585-0113-403b-bd83-62e1cc4c64c4", "56b03147-6506-42c9-b353-fe8284b2553b", "java-webapp-950371plancf423909d", "8ec8a6bb-1158-4aaa-9938-75072a36baee", "7978527b-c708-46b5-949e-54e81f3c3e64", "be4a5b03-e23d-483e-94c7-726b1581d394" ] -} \ No newline at end of file +} diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/ZipDeployTests.canZipDeployFunction.json b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/ZipDeployTests.canZipDeployFunction.json index 2ae682b8662a..330f1ca9f112 100644 --- a/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/ZipDeployTests.canZipDeployFunction.json +++ b/sdk/resourcemanagerhybrid/azure-resourcemanager-appservice/src/test/resources/session-records/ZipDeployTests.canZipDeployFunction.json @@ -321,7 +321,7 @@ "content-type" : "application/xml", "cache-control" : "no-cache", "x-ms-request-id" : "e2ce6190-8e86-44b5-a632-771198208c27", - "Body" : "" + "Body" : "" } }, { "Method" : "GET", @@ -403,4 +403,4 @@ } } ], "variables" : [ "java-func-902291304", "javacsmrg043322922", "java-func-902291304plan1fe17149", "a069fd2d04734282aa0d", "java-func-90229130439960561dc" ] -} \ No newline at end of file +} diff --git a/sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json b/sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json index b395d304d56d..a75e2438e94d 100644 --- a/sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json +++ b/sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json @@ -28,7 +28,7 @@ "description": "Database administrator login name" } }, - "administratorLoginPassword": { + "administratorLoginPwd": { "type": "secureString", "defaultValue": "1MySqlTestpw&", "minLength": 8, diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java index 2ad56699257e..f7eb2ccf97f0 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java @@ -55,7 +55,7 @@ public void testDeserialize() { Assertions.assertEquals("o", model.sqlVirtualMachineGroupResourceId()); Assertions.assertEquals("fakeBootstrapCredentialPlaceholder", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); Assertions.assertEquals("fakeOperatorCredentialPlaceholder", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); - Assertions.assertEquals("i", model.wsfcDomainCredentials().sqlServiceAccountPassword()); + Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", model.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("xhqyudxorrqnb", model.wsfcStaticIp()); Assertions.assertEquals(true, model.autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.SUNDAY, model.autoPatchingSettings().dayOfWeek()); @@ -293,7 +293,7 @@ public void testSerialize() { Assertions.assertEquals("o", model.sqlVirtualMachineGroupResourceId()); Assertions.assertEquals("fakeBootstrapCredentialPlaceholder", model.wsfcDomainCredentials().clusterBootstrapAccountPassword()); Assertions.assertEquals("fakeOperatorCredentialPlaceholder", model.wsfcDomainCredentials().clusterOperatorAccountPassword()); - Assertions.assertEquals("i", model.wsfcDomainCredentials().sqlServiceAccountPassword()); + Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", model.wsfcDomainCredentials().sqlServiceAccountPassword()); Assertions.assertEquals("xhqyudxorrqnb", model.wsfcStaticIp()); Assertions.assertEquals(true, model.autoPatchingSettings().enable()); Assertions.assertEquals(DayOfWeek.SUNDAY, model.autoPatchingSettings().dayOfWeek()); From e11a35f17d5b54b832867e8018fecdbae02a1f76 Mon Sep 17 00:00:00 2001 From: shafang Date: Wed, 26 Oct 2022 12:02:51 -0700 Subject: [PATCH 10/21] make credScan to be green --- eng/CredScanSuppression.json | 6 ++++++ .../test-resources/jdbc/mysql/test-resources.json | 2 +- .../SqlVirtualMachinePropertiesTests.java | 14 +++++++------- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index 502e54562a60..9931ce410958 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -67,6 +67,12 @@ "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy" ], "_justification": "File contains fake key used by test code." + }, + { + "file": [ + "sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testDeployments.json" + ], + "_justification": "File contains general fake key used by test code." } ] } diff --git a/sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json b/sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json index a75e2438e94d..b395d304d56d 100644 --- a/sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json +++ b/sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json @@ -28,7 +28,7 @@ "description": "Database administrator login name" } }, - "administratorLoginPwd": { + "administratorLoginPassword": { "type": "secureString", "defaultValue": "1MySqlTestpw&", "minLength": 8, diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java index f7eb2ccf97f0..d8c0b808b01c 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java @@ -44,7 +44,7 @@ public void testDeserialize() { SqlVirtualMachineProperties model = BinaryData .fromString( - "{\"virtualMachineResourceId\":\"myzydagfuaxbez\",\"provisioningState\":\"uokktwhrdxwz\",\"sqlImageOffer\":\"q\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"o\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeBootstrapCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorCredentialPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"xhqyudxorrqnb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Sunday\",\"maintenanceWindowStartingHour\":2041227856,\"maintenanceWindowDuration\":688230720},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":711383541,\"storageAccountUrl\":\"rm\",\"storageContainerName\":\"d\",\"storageAccessKey\":\"fakeAutoBackupStorageCredentialPlaceholder\",\"password\":\"fakeAutoBackupCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Monday\",\"Tuesday\",\"Sunday\"],\"fullBackupStartTime\":79438477,\"fullBackupWindowHours\":1785940860,\"logBackupFrequency\":1882721753},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"lhzdobp\",\"azureKeyVaultUrl\":\"mflbv\",\"servicePrincipalName\":\"chrkcciwwzjuqk\",\"servicePrincipalSecret\":\"sa\"},\"serverConfigurationsManagementSettings\":{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PUBLIC\",\"port\":1163138760,\"sqlAuthUpdateUserName\":\"skghsauuimj\",\"sqlAuthUpdatePassword\":\"xieduugidyjrr\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":93185233,\"startingDeviceId\":499062312,\"diskConfigurationType\":\"NEW\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":true},\"sqlInstanceSettings\":{\"collation\":\"hocohslkev\",\"maxDop\":1452843037,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":1915206631,\"maxServerMemoryMB\":635098272,\"isLpimEnabled\":true,\"isIfiEnabled\":true}},\"storageConfigurationSettings\":{\"sqlDataSettings\":{\"luns\":[750094319,441262471],\"defaultFilePath\":\"ithlvmezyvshxm\"},\"sqlLogSettings\":{\"luns\":[2042967034,820071175,681165656],\"defaultFilePath\":\"igrxwburvjxxjn\"},\"sqlTempDbSettings\":{\"dataFileSize\":655244901,\"dataGrowth\":796522407,\"logFileSize\":1581089013,\"logGrowth\":1482419493,\"dataFileCount\":368872056,\"persistFolder\":true,\"persistFolderPath\":\"vudwtiukbldng\",\"luns\":[2138211196,1997522468,655680628],\"defaultFilePath\":\"z\"},\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true,\"schedule\":{\"enable\":false,\"weeklyInterval\":2112033193,\"monthlyOccurrence\":2000492920,\"dayOfWeek\":\"Sunday\",\"startTime\":\"typmrbpizcdrqjsd\"}},\"enableAutomaticUpgrade\":true}") + "{\"virtualMachineResourceId\":\"myzydagfuaxbez\",\"provisioningState\":\"uokktwhrdxwz\",\"sqlImageOffer\":\"q\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"o\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeBootstrapCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorCredentialPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"xhqyudxorrqnb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Sunday\",\"maintenanceWindowStartingHour\":2041227856,\"maintenanceWindowDuration\":688230720},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":711383541,\"storageAccountUrl\":\"rm\",\"storageContainerName\":\"d\",\"storageAccessKey\":\"fakeAutoBackupStorageCredentialPlaceholder\",\"password\":\"fakeAutoBackupCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Monday\",\"Tuesday\",\"Sunday\"],\"fullBackupStartTime\":79438477,\"fullBackupWindowHours\":1785940860,\"logBackupFrequency\":1882721753},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"lhzdobp\",\"azureKeyVaultUrl\":\"mflbv\",\"servicePrincipalName\":\"chrkcciwwzjuqk\",\"servicePrincipalSecret\":\"sa\"},\"serverConfigurationsManagementSettings\":{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PUBLIC\",\"port\":1163138760,\"sqlAuthUpdateUserName\":\"fakeSqlAuthUpdateUserNamePlaceholder\",\"sqlAuthUpdatePassword\":\"fakeSqlAuthUpdatePasswordPlaceholder\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":93185233,\"startingDeviceId\":499062312,\"diskConfigurationType\":\"NEW\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":true},\"sqlInstanceSettings\":{\"collation\":\"hocohslkev\",\"maxDop\":1452843037,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":1915206631,\"maxServerMemoryMB\":635098272,\"isLpimEnabled\":true,\"isIfiEnabled\":true}},\"storageConfigurationSettings\":{\"sqlDataSettings\":{\"luns\":[750094319,441262471],\"defaultFilePath\":\"ithlvmezyvshxm\"},\"sqlLogSettings\":{\"luns\":[2042967034,820071175,681165656],\"defaultFilePath\":\"igrxwburvjxxjn\"},\"sqlTempDbSettings\":{\"dataFileSize\":655244901,\"dataGrowth\":796522407,\"logFileSize\":1581089013,\"logGrowth\":1482419493,\"dataFileCount\":368872056,\"persistFolder\":true,\"persistFolderPath\":\"vudwtiukbldng\",\"luns\":[2138211196,1997522468,655680628],\"defaultFilePath\":\"z\"},\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true,\"schedule\":{\"enable\":false,\"weeklyInterval\":2112033193,\"monthlyOccurrence\":2000492920,\"dayOfWeek\":\"Sunday\",\"startTime\":\"typmrbpizcdrqjsd\"}},\"enableAutomaticUpgrade\":true}") .toObject(SqlVirtualMachineProperties.class); Assertions.assertEquals("myzydagfuaxbez", model.virtualMachineResourceId()); Assertions.assertEquals("q", model.sqlImageOffer()); @@ -89,11 +89,11 @@ public void testDeserialize() { 1163138760, model.serverConfigurationsManagementSettings().sqlConnectivityUpdateSettings().port()); Assertions .assertEquals( - "skghsauuimj", + "fakeSqlAuthUpdateUserNamePlaceholder", model.serverConfigurationsManagementSettings().sqlConnectivityUpdateSettings().sqlAuthUpdateUsername()); Assertions .assertEquals( - "xieduugidyjrr", + "fakeSqlAuthUpdatePasswordPlaceholder", model.serverConfigurationsManagementSettings().sqlConnectivityUpdateSettings().sqlAuthUpdatePassword()); Assertions .assertEquals( @@ -227,8 +227,8 @@ public void testSerialize() { new SqlConnectivityUpdateSettings() .withConnectivityType(ConnectivityType.PUBLIC) .withPort(1163138760) - .withSqlAuthUpdateUsername("skghsauuimj") - .withSqlAuthUpdatePassword("xieduugidyjrr")) + .withSqlAuthUpdateUsername("fakeSqlAuthUpdateUserNamePlaceholder") + .withSqlAuthUpdatePassword("fakeSqlAuthUpdatePasswordPlaceholder")) .withSqlWorkloadTypeUpdateSettings( new SqlWorkloadTypeUpdateSettings().withSqlWorkloadType(SqlWorkloadType.DW)) .withSqlStorageUpdateSettings( @@ -327,11 +327,11 @@ public void testSerialize() { 1163138760, model.serverConfigurationsManagementSettings().sqlConnectivityUpdateSettings().port()); Assertions .assertEquals( - "skghsauuimj", + "fakeSqlAuthUpdateUserNamePlaceholder", model.serverConfigurationsManagementSettings().sqlConnectivityUpdateSettings().sqlAuthUpdateUsername()); Assertions .assertEquals( - "xieduugidyjrr", + "fakeSqlAuthUpdatePasswordPlaceholder", model.serverConfigurationsManagementSettings().sqlConnectivityUpdateSettings().sqlAuthUpdatePassword()); Assertions .assertEquals( From 6efb432c93d459dab4c360d485812720747da784 Mon Sep 17 00:00:00 2001 From: shafang Date: Wed, 26 Oct 2022 12:48:41 -0700 Subject: [PATCH 11/21] make cred scan green again --- eng/CredScanSuppression.json | 6 ------ .../AzureResourceManagerTests.testDeployments.json | 4 ++-- .../generated/SqlVirtualMachinePropertiesTests.java | 8 ++++---- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index 9931ce410958..502e54562a60 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -67,12 +67,6 @@ "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy" ], "_justification": "File contains fake key used by test code." - }, - { - "file": [ - "sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testDeployments.json" - ], - "_justification": "File contains general fake key used by test code." } ] } diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testDeployments.json b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testDeployments.json index a3a3a10d0bd7..7675046e54c4 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testDeployments.json +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testDeployments.json @@ -3583,7 +3583,7 @@ "Expires" : "-1", "Content-Length" : "442213", "x-ms-request-id" : "c9227e05-dfe5-42b5-bd7c-8fd17281848f", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/simple_deploy\",\"name\":\"simple_deploy\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"5572566982511788950\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2021-01-19T06:41:28.5466449Z\",\"duration\":\"PT6.7539767S\",\"correlationId\":\"dd392d35-d729-45b7-a6ad-5ce7573bdb02\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{\"newNSG\":{\"type\":\"Object\",\"value\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d42c7b9d-a6dd-4119-ab27-173a3f606c58\",\"securityRules\":[],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/test_deploy\",\"name\":\"test_deploy\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"15642643252953848480\",\"parameters\":{\"groupLocation\":{\"type\":\"String\",\"value\":\"westus\"},\"groupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"appId\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"appSecret\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"botId\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"botSku\":{\"type\":\"String\",\"value\":\"westus\"},\"newAppServicePlanName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"newAppServicePlanSku\":{\"type\":\"Object\",\"value\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}},\"newAppServicePlanLocation\":{\"type\":\"String\",\"value\":\"\"},\"newWebAppName\":{\"type\":\"String\",\"value\":\"\"},\"slackVerificationToken\":{\"type\":\"String\",\"value\":\"\"},\"slackBotToken\":{\"type\":\"String\",\"value\":\"\"},\"slackClientSigningSecret\":{\"type\":\"String\",\"value\":\"\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2021-01-19T02:08:26.7466325Z\",\"duration\":\"PT6.6188544S\",\"correlationId\":\"d0b1dbcb-ba26-4317-b6f8-c07c936e4a78\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"resourceGroups\",\"locations\":[\"westus\"]},{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test\",\"resourceType\":\"Microsoft.Resources/resourceGroups\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageDeployment\"}],\"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\":[{\"message\":\"No HTTP resource was found that matches the request URI 'http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Resources/resourceGroups/zhoxing-test?api-version=2018-05-01'.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/simple-template\",\"name\":\"simple-template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"6178499644389956004\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"name\":{\"type\":\"String\",\"value\":\"azure-cli-deploy-test-nsg1\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2021-01-18T09:44:40.6671482Z\",\"duration\":\"PT5.7297721S\",\"correlationId\":\"d2adafde-03cb-4387-8189-52ab1954ac21\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{\"newNSG\":{\"type\":\"Object\",\"value\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"0a2a1272-9dfd-476f-98d9-5fc56428ac2b\",\"securityRules\":[],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/japaneast-template\",\"name\":\"japaneast-template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"66330334233569263\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-12-28T02:35:11.0210177Z\",\"duration\":\"PT3.858351S\",\"correlationId\":\"6661594c-3428-4661-b24e-ba1445485d77\",\"providers\":[{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"scheduledQueryRules\",\"locations\":[\"japaneast\"]}]}],\"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\":\"LinkedAuthorizationFailed\",\"message\":\"The client has permission to perform action 'microsoft.insights/actiongroups/read' on scope '/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Insights/scheduledQueryRules/armtemplate-alert-japanese-utf8', however the linked subscription '00000000-0000-0000-00000000' was not found. \"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20201209143840\",\"name\":\"Microsoft.StorageAccount-20201209143840\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/largefiletest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\",\"provisioningHash\":\"Default\"},\"properties\":{\"templateHash\":\"8884837994967140257\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"largefiletest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"minimumTlsVersion\":{\"type\":\"String\",\"value\":\"TLS1_2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true},\"allowBlobPublicAccess\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-12-09T06:40:02.7787226Z\",\"duration\":\"PT35.334902S\",\"correlationId\":\"76aebba0-555a-4e2a-af9f-e6fb74f8b50b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/largefiletest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20201209142141\",\"name\":\"Microsoft.StorageAccount-20201209142141\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/bigfiletest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\",\"provisioningHash\":\"Default\"},\"properties\":{\"templateHash\":\"8884837994967140257\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"bigfiletest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"minimumTlsVersion\":{\"type\":\"String\",\"value\":\"TLS1_2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true},\"allowBlobPublicAccess\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-12-09T06:23:20.6640647Z\",\"duration\":\"PT1M4.8999807S\",\"correlationId\":\"83c1ba4c-79b5-4431-859d-b1b084d5e717\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/bigfiletest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20201207153508\",\"name\":\"Microsoft.StorageAccount-20201207153508\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\",\"marketplaceItemId\":\"Microsoft.StorageAccount\",\"provisioningHash\":\"Default\"},\"properties\":{\"templateHash\":\"16676323329717024192\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxing\"},\"accountType\":{\"type\":\"String\",\"value\":\"Standard_RAGRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"accessTier\":{\"type\":\"String\",\"value\":\"Hot\"},\"minimumTlsVersion\":{\"type\":\"String\",\"value\":\"TLS1_2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true},\"allowBlobPublicAccess\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-12-07T07:36:19.2631223Z\",\"duration\":\"PT42.4706589S\",\"correlationId\":\"e2ea5a7b-b1e0-4d39-a41c-28fb3e526aa8\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-19a843bc\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-19a843bc\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1769012333693356871\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-11-20T06:03:42.7642531Z\",\"duration\":\"PT4.4980342S\",\"correlationId\":\"67f9dcd4-d3ae-4810-a19b-71c9b86e0662\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - aiqkmwurjsg3x5k\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/pid-bd911d2b-cf92-472f-aeee-7d1123b36b98\",\"name\":\"pid-bd911d2b-cf92-472f-aeee-7d1123b36b98\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1785727386360713170\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-11-20T05:53:26.0899211Z\",\"duration\":\"PT0.2237105S\",\"correlationId\":\"ed0b4d69-d990-4aa4-a4cf-c02de42c61b5\",\"providers\":[],\"dependencies\":[],\"outputResources\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/mainTemplate.anon\",\"name\":\"mainTemplate.anon\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"10732264190512868704\",\"parameters\":{\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"resourceDeploymentRegion\":{\"type\":\"String\",\"value\":\"eastus\"},\"notebookVMSize\":{\"type\":\"String\",\"value\":\"STANDARD_D3_V2\"},\"headClusterVMSize\":{\"type\":\"String\",\"value\":\"STANDARD_NC6\"},\"maxHeadNodes\":{\"type\":\"Int\",\"value\":2},\"workerClusterVMSize\":{\"type\":\"String\",\"value\":\"STANDARD_D2_V2\"},\"maxWorkerNodes\":{\"type\":\"Int\",\"value\":4},\"timeValueForRandomSuffix\":{\"type\":\"String\",\"value\":\"20201120T055316Z\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-11-20T06:04:53.1950966Z\",\"duration\":\"PT11M35.6598321S\",\"correlationId\":\"ed0b4d69-d990-4aa4-a4cf-c02de42c61b5\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]},{\"resourceType\":\"deploymentScripts\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.ContainerRegistry\",\"resourceTypes\":[{\"resourceType\":\"registries\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"eastus\"]},{\"resourceType\":\"virtualNetworks\",\"locations\":[\"eastus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.KeyVault\",\"resourceTypes\":[{\"resourceType\":\"vaults\",\"locations\":[\"eastus\"]},{\"resourceType\":\"vaults/secrets\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.MachineLearningServices\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"eastus\"]},{\"resourceType\":\"workspaces/computes\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Maps\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"global\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"eastus\"]},{\"resourceType\":\"sites\",\"locations\":[\"eastus\"]},{\"resourceType\":\"sites/config\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.ManagedIdentity\",\"resourceTypes\":[{\"resourceType\":\"userAssignedIdentities\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Authorization\",\"resourceTypes\":[{\"resourceType\":\"roleAssignments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/nsgqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Network/networkSecurityGroups\",\"resourceName\":\"nsgqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"vnetqkmwurjsg3x5k\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"vnetqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/nsgqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Network/networkSecurityGroups\",\"resourceName\":\"nsgqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k/subnets/default\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"vnetqkmwurjsg3x5k/default\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\",\"apiVersion\":\"2018-02-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/aiqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"aiqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test/computes/ciqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces/computes\",\"resourceName\":\"zhoxing-test/ciqkmwurjsg3x5k\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k/subnets/default\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"vnetqkmwurjsg3x5k/default\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test/computes/head-gpu\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces/computes\",\"resourceName\":\"zhoxing-test/head-gpu\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k/subnets/default\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"vnetqkmwurjsg3x5k/default\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test/computes/worker-cpu\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces/computes\",\"resourceName\":\"zhoxing-test/worker-cpu\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/appSPqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"appSPqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2020-02-01-preview\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/AzureMapPrimaryKey\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/AzureMapPrimaryKey\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-04-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/STORAGE-ACCOUNT-CONNECTION-STRING\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/STORAGE-ACCOUNT-CONNECTION-STRING\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/APP-KEY\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/APP-KEY\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2020-02-01-preview\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/MAP-KEY\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/MAP-KEY\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/idqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"resourceName\":\"idqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/idqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"resourceName\":\"idqkmwurjsg3x5k\",\"apiVersion\":\"2018-11-30\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Authorization/roleAssignments/5f435e57-57c8-5be7-9653-f17aa95a9897\",\"resourceType\":\"Microsoft.Authorization/roleAssignments\",\"resourceName\":\"5f435e57-57c8-5be7-9653-f17aa95a9897\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\",\"apiVersion\":\"2018-02-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Authorization/roleAssignments/17436b13-0e9f-52cd-93d3-c520957d4b44\",\"resourceType\":\"Microsoft.Authorization/roleAssignments\",\"resourceName\":\"17436b13-0e9f-52cd-93d3-c520957d4b44\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/APP-KEY\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/APP-KEY\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/MAP-KEY\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/MAP-KEY\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/STORAGE-ACCOUNT-CONNECTION-STRING\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/STORAGE-ACCOUNT-CONNECTION-STRING\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/config\",\"resourceName\":\"appSiteqkmwurjsg3x5k/appsettings\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/idqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"resourceName\":\"idqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Authorization/roleAssignments/5f435e57-57c8-5be7-9653-f17aa95a9897\",\"resourceType\":\"Microsoft.Authorization/roleAssignments\",\"resourceName\":\"5f435e57-57c8-5be7-9653-f17aa95a9897\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test/computes/ciqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces/computes\",\"resourceName\":\"zhoxing-test/ciqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-04-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deploymentScripts/retriveSimulatorCode\",\"resourceType\":\"Microsoft.Resources/deploymentScripts\",\"resourceName\":\"retriveSimulatorCode\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/idqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"resourceName\":\"idqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Authorization/roleAssignments/5f435e57-57c8-5be7-9653-f17aa95a9897\",\"resourceType\":\"Microsoft.Authorization/roleAssignments\",\"resourceName\":\"5f435e57-57c8-5be7-9653-f17aa95a9897\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-04-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deploymentScripts/configureWebApp\",\"resourceType\":\"Microsoft.Resources/deploymentScripts\",\"resourceName\":\"configureWebApp\"}],\"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\":\"DeploymentScriptDownloadFailure\",\"message\":\"The deployment script execution failed because the primary or supporting scripts could not be downloaded successfully due to multiple errors. First error:\\r\\nMicrosoft.PowerShell.Commands.HttpResponseException: Response status code does not indicate success: 403 (Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.).\\n at System.Management.Automation.MshCommandRuntime.ThrowTerminatingError(ErrorRecord errorRecord)\\r\\nat Start-SystemDeploymentScriptDownloadFile, /mnt/azscripts/azscriptinput/DeploymentScript.ps1: line 69\\r\\nat , /mnt/azscripts/azscriptinput/DeploymentScript.ps1: line 170. Please refer to https://aka.ms/DeploymentScriptsTroubleshoot for more deployment script information.\"},{\"code\":\"DeploymentScriptError\",\"message\":\"The provided script failed with the following error:\\r\\n[Error] Signature verification failed for whatif-webapp-code.zip. Please refer to https://aka.ms/DeploymentScriptsTroubleshoot for more deployment script information.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zx\",\"name\":\"zx\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"10662465836138684748\",\"parameters\":{\"function-app-name\":{\"type\":\"String\",\"value\":\"orderProcessing\"},\"sku\":{\"type\":\"String\",\"value\":\"S3\"},\"storageAccountType\":{\"type\":\"String\",\"value\":\"Standard_LRS\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"},\"deploymentEnvironment\":{\"type\":\"String\",\"value\":\"CI\"},\"applicationSettings\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"provisioningState\":\"Canceled\",\"timestamp\":\"2020-11-03T08:08:27.8712963Z\",\"duration\":\"PT13.251839S\",\"correlationId\":\"949af8ef-8c1f-4794-af5a-71458ce36df8\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"southcentralus\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/config\",\"locations\":[null]},{\"resourceType\":\"sites/slots\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/slots/config\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/appInsights-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"appInsights-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/config\",\"resourceName\":\"orderProcessing/appsettings\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/slots/config\",\"resourceName\":\"orderProcessing/stage/appsettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/azuredeploy\",\"name\":\"azuredeploy\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"10662465836138684748\",\"parameters\":{\"function-app-name\":{\"type\":\"String\",\"value\":\"orderProcessing\"},\"sku\":{\"type\":\"String\",\"value\":\"S3\"},\"storageAccountType\":{\"type\":\"String\",\"value\":\"Standard_LRS\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"},\"deploymentEnvironment\":{\"type\":\"String\",\"value\":\"CI\"},\"applicationSettings\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-11-03T08:06:38.3403154Z\",\"duration\":\"PT47.9793905S\",\"correlationId\":\"f1858719-e078-41ff-98b8-3113fca4a2fe\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"southcentralus\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/config\",\"locations\":[null]},{\"resourceType\":\"sites/slots\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/slots/config\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/appInsights-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"appInsights-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/config\",\"resourceName\":\"orderProcessing/appsettings\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/slots/config\",\"resourceName\":\"orderProcessing/stage/appsettings\"}],\"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\":[{\"message\":\"Website with given name orderProcessing already exists.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/validate_error_template\",\"name\":\"validate_error_template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"479398563487745336\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-10-26T02:36:22.208154Z\",\"duration\":\"PT35.462768S\",\"correlationId\":\"ffd8d210-0a76-404d-96a7-8a9e5c24c14b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/euwapiptdevst02\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/simple_deploy_multiline\",\"name\":\"simple_deploy_multiline\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"2667423895514669180\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-10-14T09:05:20.6753533Z\",\"duration\":\"PT9.0409803S\",\"correlationId\":\"74eda485-bbc0-402f-a8c1-14aa1a722cbd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{\"empty\":{\"type\":\"String\",\"value\":\"\"},\"newNSG\":{\"type\":\"Object\",\"value\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"11cfe367-bf96-4aba-b083-8cb3fca534c4\",\"securityRules\":[],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zhoxing-test\",\"name\":\"zhoxing-test\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"5485076355534486564\",\"parameters\":{\"projectName\":{\"type\":\"String\",\"value\":\"get.it\"},\"getitDatabaseGroupName\":{\"type\":\"String\",\"value\":\"RG-GETIT-DB\"},\"getitDatabaseDeploymentName\":{\"type\":\"String\",\"value\":\"DEPLOY-GETIT-DB\"},\"getitNetworkGroupName\":{\"type\":\"String\",\"value\":\"RG-GETIT-NETWORK\"},\"getitNetworkDeploymentName\":{\"type\":\"String\",\"value\":\"DEPLOY-GETIT-NETWORK\"},\"apimName\":{\"type\":\"String\",\"value\":\"apim-zdf-getit\"},\"apimAdminEmail\":{\"type\":\"String\",\"value\":\"sebastian.gaertner@accso.de\"},\"apimOrgName\":{\"type\":\"String\",\"value\":\"ZDF\"},\"apimProductServiceApiName\":{\"type\":\"String\",\"value\":\"product-api\"},\"apimEditionServiceApiName\":{\"type\":\"String\",\"value\":\"edition-api\"},\"apimResourceServiceApiName\":{\"type\":\"String\",\"value\":\"resource-api\"},\"apimPublicationEventServiceApiName\":{\"type\":\"String\",\"value\":\"publicationevent-api\"},\"apimGroupServiceApiName\":{\"type\":\"String\",\"value\":\"group-api\"},\"apimGraphQLApiName\":{\"type\":\"String\",\"value\":\"graphql-api\"},\"apimProductionApiName\":{\"type\":\"String\",\"value\":\"production-api\"},\"appServerFarmName\":{\"type\":\"String\",\"value\":\"plan-zdf-getit\"},\"logAnalyticsWorkspaceName\":{\"type\":\"String\",\"value\":\"log-zdf-getit-api2\"},\"productServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-product\"},\"productServiceRuntime\":{\"type\":\"String\",\"value\":\"java\"},\"editionServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-edition\"},\"editionServiceRuntime\":{\"type\":\"String\",\"value\":\"dotnet\"},\"resourceServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-resource\"},\"resourceServiceRuntime\":{\"type\":\"String\",\"value\":\"dotnet\"},\"publicationEventServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-publicationevent\"},\"publicationEventServiceRuntime\":{\"type\":\"String\",\"value\":\"dotnet\"},\"groupServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-group\"},\"groupServiceRuntime\":{\"type\":\"String\",\"value\":\"dotnet\"},\"graphQLServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-graphql\"},\"graphQLServiceRuntime\":{\"type\":\"String\",\"value\":\"node\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-08-14T02:33:39.9455691Z\",\"duration\":\"PT12.8454385S\",\"correlationId\":\"835c2bee-c9e0-4662-9152-015fc9a6e646\",\"providers\":[{\"namespace\":\"Microsoft.ApiManagement\",\"resourceTypes\":[{\"resourceType\":\"service\",\"locations\":[\"westus\"]},{\"resourceType\":\"service/tags\",\"locations\":[null]},{\"resourceType\":\"service/apis\",\"locations\":[null]},{\"resourceType\":\"service/apis/tags\",\"locations\":[null]},{\"resourceType\":\"service/subscriptions\",\"locations\":[null]},{\"resourceType\":\"service/products\",\"locations\":[null]},{\"resourceType\":\"service/products/apis\",\"locations\":[null]},{\"resourceType\":\"service/products/policies\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/networkConfig\",\"locations\":[\"westus\"]}]},{\"namespace\":\"Microsoft.OperationalInsights\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"westeurope\"]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/product\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/product\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/edition\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/edition\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/resource\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/resource\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/publicationEvent\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/publicationEvent\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/group\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/group\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/graphql\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/graphql\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/productionPermit\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/productionPermit\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/productionProposal\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/productionProposal\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/product\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/product\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api/tags/product\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/product-api/product\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/edition\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/edition\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api/tags/edition\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/edition-api/edition\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/resource\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/resource\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api/tags/resource\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/resource-api/resource\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/publicationEvent\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/publicationEvent\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api/tags/publicationEvent\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/publicationevent-api/publicationEvent\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/group\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/group\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api/tags/group\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/group-api/group\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/graphql\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/graphql\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api/tags/graphql\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/graphql-api/graphql\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/productionPermit\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/productionPermit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api/tags/productionPermit\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/production-api/productionPermit\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/productionProposal\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/productionProposal\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api/tags/productionProposal\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/production-api/productionProposal\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/planit-import\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/planit-import\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/doit-import\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/doit-import\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/product-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/edition-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/resource-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/publicationevent-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/group-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/graphql-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/production-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/policies/policy\",\"resourceType\":\"Microsoft.ApiManagement/service/products/policies\",\"resourceName\":\"apim-zdf-getit/starter/policy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/product-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/edition-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/resource-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/publicationevent-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/group-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/graphql-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/production-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/policies/policy\",\"resourceType\":\"Microsoft.ApiManagement/service/products/policies\",\"resourceName\":\"apim-zdf-getit/standard/policy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/product-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/edition-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/resource-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/publicationevent-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/group-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/graphql-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/production-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-product-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-product-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-product-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-product-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-product\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-product\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-product\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-product\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-product/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-product/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-edition-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-edition-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-edition-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-edition-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-edition\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-edition\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-edition\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-edition\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-edition/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-edition/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-resource-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-resource-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-resource-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-resource-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-resource\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-resource\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-resource\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-resource\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-resource/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-resource/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-publicationevent-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-publicationevent-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-publicationevent-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-publicationevent-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-publicationevent\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-publicationevent\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-publicationevent\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-publicationevent\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-publicationevent/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-publicationevent/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-group-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-group-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-group-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-group-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-group\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-group\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-group\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-group\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-group/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-group/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-graphql-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-graphql-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-graphql-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-graphql-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-graphql\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-graphql\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-graphql\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-graphql\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-graphql/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-graphql/virtualNetwork\"}],\"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\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ServiceAlreadyExists\",\"message\":\"Api service already exists: apim-zdf-getit\"},{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'RG-GETIT-DB' could not be found.\"},{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'RG-GETIT-NETWORK' could not be found.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-b2c970b3\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-b2c970b3\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"13728839536848772392\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:58.6717661Z\",\"duration\":\"PT6.2505024S\",\"correlationId\":\"15282324-0af8-462b-a510-44af180a9fca\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-group-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-a7cd0d23\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-a7cd0d23\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"11008178750715012999\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:56.3163568Z\",\"duration\":\"PT4.6419329S\",\"correlationId\":\"2982921b-9678-4d4f-a56e-1abf794921b9\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-graphql-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-88d7d7bd\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-88d7d7bd\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16733204837828727382\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:57.9818234Z\",\"duration\":\"PT6.3610864S\",\"correlationId\":\"45c90228-f8b9-4db0-8c66-76a037085704\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-edition-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-4b72882f\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-4b72882f\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"851689626023111966\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:55.1755059Z\",\"duration\":\"PT3.6922649S\",\"correlationId\":\"e0678ab0-3b3b-4c3e-bcb4-4871660ba044\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-resource-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-3f5366ed\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-3f5366ed\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1561114309446397737\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:55.8251522Z\",\"duration\":\"PT4.9057511S\",\"correlationId\":\"400b209e-8de2-4536-bccd-c070ecd048ec\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-publicationevent-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-4e05da17\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-4e05da17\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"8029190641605507225\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:52.6382412Z\",\"duration\":\"PT2.1789515S\",\"correlationId\":\"bd8ed02e-2208-4dcd-a584-94965af3e707\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-product-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zhoxing-test2\",\"name\":\"zhoxing-test2\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.StorageCache/caches/zhoxing-test2\",\"marketplaceItemId\":\"Microsoft.StorageCache\"},\"properties\":{\"templateHash\":\"6137140797134419149\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"eastus\"},\"subnetName\":{\"type\":\"String\",\"value\":\"default\"},\"virtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxing\"},\"storageCacheName\":{\"type\":\"String\",\"value\":\"zhoxing-test2\"},\"cacheSizeGB\":{\"type\":\"Int\",\"value\":3072},\"storageCacheSkuName\":{\"type\":\"String\",\"value\":\"Standard_2G\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Failed\",\"timestamp\":\"2020-08-07T09:42:02.8806214Z\",\"duration\":\"PT11M2.8851179S\",\"correlationId\":\"fbd071b6-cacb-4761-85ce-fb85ddf833ab\",\"providers\":[{\"namespace\":\"Microsoft.StorageCache\",\"resourceTypes\":[{\"resourceType\":\"caches\",\"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\":\"AscInternalError\",\"message\":\"Error encountered deploying the cache.\"}]},\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.VirtualNetwork-20200731143851\",\"name\":\"Microsoft.VirtualNetwork-20200731143851\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxing\",\"marketplaceItemId\":\"Microsoft.VirtualNetwork\"},\"properties\":{\"templateHash\":\"13381686255721391901\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"eastus\"},\"virtualNetworkName\":{\"type\":\"String\",\"value\":\"zhoxing\"},\"resourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"addressSpaces\":{\"type\":\"Array\",\"value\":[\"10.12.0.0/16\"]},\"ipv6Enabled\":{\"type\":\"Bool\",\"value\":false},\"subnetCount\":{\"type\":\"Int\",\"value\":1},\"subnet0_name\":{\"type\":\"String\",\"value\":\"default\"},\"subnet0_addressRange\":{\"type\":\"String\",\"value\":\"10.12.0.0/24\"},\"ddosProtectionPlanEnabled\":{\"type\":\"Bool\",\"value\":false},\"firewallEnabled\":{\"type\":\"Bool\",\"value\":false},\"bastionEnabled\":{\"type\":\"Bool\",\"value\":false}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-31T06:39:26.0818169Z\",\"duration\":\"PT13.5092281S\",\"correlationId\":\"9024bd3f-0d65-49a7-b9e9-f76cceea13ef\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/VirtualNetworks/zhoxing\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zhoxing\",\"name\":\"zhoxing\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"9913373836689765749\",\"parameters\":{\"groupLocation\":{\"type\":\"String\",\"value\":\"westus\"},\"groupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"appId\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"appSecret\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"botId\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"botSku\":{\"type\":\"String\",\"value\":\"westus\"},\"newAppServicePlanName\":{\"type\":\"String\",\"value\":\"***\"},\"newAppServicePlanSku\":{\"type\":\"Object\",\"value\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}},\"newAppServicePlanLocation\":{\"type\":\"String\",\"value\":\"\"},\"newWebAppName\":{\"type\":\"String\",\"value\":\"\"},\"slackVerificationToken\":{\"type\":\"String\",\"value\":\"\"},\"slackBotToken\":{\"type\":\"String\",\"value\":\"\"},\"slackClientSigningSecret\":{\"type\":\"String\",\"value\":\"\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-07-24T02:09:57.2934537Z\",\"duration\":\"PT2.6251093S\",\"correlationId\":\"63a2a95c-8cc3-4b26-b0d1-05c19704468a\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"resourceGroups\",\"locations\":[\"westus\"]},{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test\",\"resourceType\":\"Microsoft.Resources/resourceGroups\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageDeployment\"}],\"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\":[{\"message\":\"No HTTP resource was found that matches the request URI 'http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Resources/resourceGroups/zhoxing-test?api-version=2018-05-01'.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/redis.cache_2\",\"name\":\"redis.cache_2\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing3\",\"marketplaceItemId\":\"Microsoft.Cache\"},\"properties\":{\"templateHash\":\"16475047503873081288\",\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-17T02:30:18.0728672Z\",\"duration\":\"PT18M29.2379003S\",\"correlationId\":\"27a8f757-b8ac-440f-8126-c3c867edf7c5\",\"providers\":[{\"namespace\":\"Microsoft.Cache\",\"resourceTypes\":[{\"resourceType\":\"Redis\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/redis.cache_1\",\"name\":\"redis.cache_1\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing2\",\"marketplaceItemId\":\"Microsoft.Cache\"},\"properties\":{\"templateHash\":\"576582858980762143\",\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-17T02:39:22.6586917Z\",\"duration\":\"PT28M3.7821048S\",\"correlationId\":\"02c9224d-e521-4797-8aef-da551e14948d\",\"providers\":[{\"namespace\":\"Microsoft.Cache\",\"resourceTypes\":[{\"resourceType\":\"Redis\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/redis.cache\",\"name\":\"redis.cache\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.Cache\"},\"properties\":{\"templateHash\":\"6801733663408905830\",\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-17T02:23:16.2959839Z\",\"duration\":\"PT18M21.6882908S\",\"correlationId\":\"4d616a52-417e-4b20-832b-a427dc4fbae7\",\"providers\":[{\"namespace\":\"Microsoft.Cache\",\"resourceTypes\":[{\"resourceType\":\"Redis\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/NoMarketplace-20200713174155\",\"name\":\"NoMarketplace-20200713174155\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/zhoxingtest.com\",\"marketplaceItemId\":\"\"},\"properties\":{\"templateHash\":\"10419476445083869131\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxingtest.com\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-13T09:44:06.9606591Z\",\"duration\":\"PT47.6452397S\",\"correlationId\":\"fa90b1a8-96ef-4f44-aba2-13ad7a03d84d\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/zhoxingtest.com\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/NoMarketplace-20200713173655\",\"name\":\"NoMarketplace-20200713173655\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/zhoxingtest.com\",\"marketplaceItemId\":\"\"},\"properties\":{\"templateHash\":\"10419476445083869131\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxingtest.com\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-13T09:38:18.4729953Z\",\"duration\":\"PT50.8715S\",\"correlationId\":\"565d3a98-d796-41ca-856e-5640767142ff\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/zhoxingtest.com\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.ApplianceDefinition\",\"name\":\"Microsoft.ApplianceDefinition\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Solutions/applicationDefinitions/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.ApplianceDefinition\"},\"properties\":{\"templateHash\":\"7328759817283875413\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"managementPolicy\":{\"type\":\"Object\",\"value\":{\"mode\":\"Managed\"}},\"lockLevel\":{\"type\":\"String\",\"value\":\"none\"},\"authorizations\":{\"type\":\"Array\",\"value\":[]},\"description\":{\"type\":\"String\",\"value\":\"\"},\"displayName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"packageFileUri\":{\"type\":\"String\",\"value\":\"https://containername.blob.core.windows.net/package.zip\"},\"lockingPolicy\":{\"type\":\"Object\",\"value\":{\"allowedActions\":[]}},\"notificationPolicy\":{\"type\":\"Object\",\"value\":{\"notificationEndpoints\":[]}},\"deploymentPolicy\":{\"type\":\"Object\",\"value\":{\"deploymentMode\":\"Complete\"}}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Failed\",\"timestamp\":\"2020-07-13T08:59:53.7509226Z\",\"duration\":\"PT10.0740069S\",\"correlationId\":\"e0f2cd1b-6183-4bae-9be6-a3b51d824254\",\"providers\":[{\"namespace\":\"Microsoft.Solutions\",\"resourceTypes\":[{\"resourceType\":\"applicationDefinitions\",\"locations\":[\"westus\"]}]}],\"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\":\"DownloadItemFromBlobFailed\",\"message\":\"Download of the item from blob at 'https://containername.blob.core.windows.net/package.zip' failed due to a failed connection.\"}]},\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200617163543\",\"name\":\"Microsoft.StorageAccount-20200617163543\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingpage\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingpage\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-17T08:38:17.9332656Z\",\"duration\":\"PT35.3608729S\",\"correlationId\":\"a6010c85-0ebf-4007-8e00-0a0a553a0cb9\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingpage\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200605161418\",\"name\":\"Microsoft.StorageAccount-20200605161418\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtestv2\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtestv2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-05T08:15:19.9706428Z\",\"duration\":\"PT29.9345928S\",\"correlationId\":\"183bd12b-7ce3-47af-91da-f806eddcaa30\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtestv2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200605161221\",\"name\":\"Microsoft.StorageAccount-20200605161221\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest3\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest3\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-05T08:13:27.2729317Z\",\"duration\":\"PT33.6979316S\",\"correlationId\":\"66cd9283-18a3-42e1-beea-db534516fd09\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zhoxing-test-6511134\",\"name\":\"zhoxing-test-6511134\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Devices/IotHubs/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.IotHub\",\"provisioningHash\":\"zhoxing-test-6511134\"},\"properties\":{\"templateHash\":\"14500782064966916276\",\"parameters\":{\"hubname\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"eastus\"},\"sku_name\":{\"type\":\"String\",\"value\":\"S1\"},\"sku_units\":{\"type\":\"String\",\"value\":\"1\"},\"d2c_partitions\":{\"type\":\"String\",\"value\":\"4\"},\"features\":{\"type\":\"String\",\"value\":\"None\"},\"tags\":{\"type\":\"Object\",\"value\":{}},\"cloudEnvironment\":{\"type\":\"String\",\"value\":\"public\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-05T03:04:26.3289398Z\",\"duration\":\"PT2M45.3270964S\",\"correlationId\":\"23672a2f-a5a0-4935-9e4b-28b954b309e1\",\"providers\":[{\"namespace\":\"Microsoft.Devices\",\"resourceTypes\":[{\"resourceType\":\"IotHubs\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.OperationalInsights\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Security\",\"resourceTypes\":[{\"resourceType\":\"IoTSecuritySolutions\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Devices/IotHubs/zhoxing-test\",\"resourceType\":\"Microsoft.Devices/IotHubs\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.OperationalInsights/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Devices/IotHubs/zhoxing-test\",\"resourceType\":\"Microsoft.Devices/IotHubs\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.OperationalInsights/workspaces\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Security/IoTSecuritySolutions/zhoxing-test\",\"resourceType\":\"Microsoft.Security/IoTSecuritySolutions\",\"resourceName\":\"zhoxing-test\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Devices/IotHubs/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Security/IoTSecuritySolutions/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200604182734\",\"name\":\"Microsoft.StorageAccount-20200604182734\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest3\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest3\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"Storage\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-04T10:28:34.861346Z\",\"duration\":\"PT33.442841S\",\"correlationId\":\"d9cdc3a8-6629-4779-a6f9-a572107da649\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200604182518\",\"name\":\"Microsoft.StorageAccount-20200604182518\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"FileStorage\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-04T10:26:20.9378925Z\",\"duration\":\"PT30.4986271S\",\"correlationId\":\"1bc5999e-8ad1-40eb-9ce9-9bd7f41f2469\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200604174616\",\"name\":\"Microsoft.StorageAccount-20200604174616\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"BlockBlobStorage\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-04T09:47:54.9354542Z\",\"duration\":\"PT31.7385616S\",\"correlationId\":\"b64730bd-3441-40a1-b0c8-8a2a28b2373b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200604174207\",\"name\":\"Microsoft.StorageAccount-20200604174207\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-04T09:44:02.7554567Z\",\"duration\":\"PT36.4150378S\",\"correlationId\":\"2daa0bea-baba-47fd-911d-3f032fcb4f12\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/VirtualNetworklink-3d99afdb-b016-4341-b822-35863300404c\",\"name\":\"VirtualNetworklink-3d99afdb-b016-4341-b822-35863300404c\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1961003837028567226\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:42:23.6683592Z\",\"duration\":\"PT43.4583406S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateDnsZones/virtualNetworkLinks\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net/virtualNetworkLinks/s67i3pgzda3qi\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/VirtualNetworkLink-20200528103815\",\"name\":\"VirtualNetworkLink-20200528103815\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"17624723031993013323\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:42:25.2537755Z\",\"duration\":\"PT48.5949876S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net/virtualNetworkLinks/s67i3pgzda3qi\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/DnsZoneGroup-20200528103815\",\"name\":\"DnsZoneGroup-20200528103815\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"17179788593214746780\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:41:44.8948026Z\",\"duration\":\"PT8.4190742S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateEndpoints/privateDnsZoneGroups\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3/privateDnsZoneGroups/default\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDnsZone-3d99afdb-b016-4341-b822-35863300404b\",\"name\":\"PrivateDnsZone-3d99afdb-b016-4341-b822-35863300404b\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"2250866243485167996\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:41:28.9956706Z\",\"duration\":\"PT51.326253S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDns-20200528103815\",\"name\":\"PrivateDns-20200528103815\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"9908679191686152932\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:41:32.5715095Z\",\"duration\":\"PT59.4559786S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/UpdateSubnetDeployment-20200528103815\",\"name\":\"UpdateSubnetDeployment-20200528103815\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16875532642000494520\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:39:49.6423303Z\",\"duration\":\"PT9.8150316S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[null]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest/subnets/default\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.PrivateEndpoint-20200528103530\",\"name\":\"Microsoft.PrivateEndpoint-20200528103530\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\",\"marketplaceItemId\":\"\"},\"properties\":{\"templateHash\":\"12801401672929746764\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"privateEndpointName\":{\"type\":\"String\",\"value\":\"pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"},\"privateLinkResource\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\"},\"targetSubResource\":{\"type\":\"Array\",\"value\":[\"table\"]},\"requestMessage\":{\"type\":\"String\",\"value\":\"\"},\"subnet\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest/subnets/default\"},\"virtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest\"},\"virtualNetworkResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subnetDeploymentName\":{\"type\":\"String\",\"value\":\"UpdateSubnetDeployment-20200528103815\"},\"privateDnsDeploymentName\":{\"type\":\"String\",\"value\":\"PrivateDns-20200528103815\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:42:30.7104493Z\",\"duration\":\"PT3M0.9325005S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateEndpoints\",\"locations\":[\"centralus\"]}]},{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/UpdateSubnetDeployment-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"UpdateSubnetDeployment-20200528103815\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\",\"resourceType\":\"Microsoft.Network/privateEndpoints\",\"resourceName\":\"pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\",\"resourceType\":\"Microsoft.Network/privateEndpoints\",\"resourceName\":\"pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDns-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"PrivateDns-20200528103815\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDns-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"PrivateDns-20200528103815\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/VirtualNetworkLink-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"VirtualNetworkLink-20200528103815\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\",\"resourceType\":\"Microsoft.Network/privateEndpoints\",\"resourceName\":\"pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDns-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"PrivateDns-20200528103815\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/DnsZoneGroup-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DnsZoneGroup-20200528103815\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net/virtualNetworkLinks/s67i3pgzda3qi\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3/privateDnsZoneGroups/default\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest/subnets/default\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.VirtualNetwork-20200528103154\",\"name\":\"Microsoft.VirtualNetwork-20200528103154\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.VirtualNetwork-ARM\"},\"properties\":{\"templateHash\":\"7310725565247910838\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"virtualNetworkName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"resourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"addressSpaces\":{\"type\":\"Array\",\"value\":[\"10.17.0.0/16\"]},\"ipv6Enabled\":{\"type\":\"Bool\",\"value\":false},\"subnetCount\":{\"type\":\"Int\",\"value\":1},\"subnet0_name\":{\"type\":\"String\",\"value\":\"default\"},\"subnet0_addressRange\":{\"type\":\"String\",\"value\":\"10.17.0.0/24\"},\"ddosProtectionPlanEnabled\":{\"type\":\"Bool\",\"value\":false},\"firewallEnabled\":{\"type\":\"Bool\",\"value\":false},\"bastionEnabled\":{\"type\":\"Bool\",\"value\":false}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:34:12.7114768Z\",\"duration\":\"PT21.3925748S\",\"correlationId\":\"7f24cb63-adb7-4672-8138-4dce3757aa9b\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/VirtualNetworks/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.ContainerRegistry\",\"name\":\"Microsoft.ContainerRegistry\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.ContainerRegistry/registries/zhoxingtest/webhooks/zhoxingtest\"},\"properties\":{\"templateHash\":\"8202610767534201205\",\"parameters\":{\"registryName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"webhookName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"webhookLocation\":{\"type\":\"String\",\"value\":\"westus\"},\"webhookApiVersion\":{\"type\":\"String\",\"value\":\"2019-12-01-preview\"},\"serviceUri\":{\"type\":\"SecureString\"},\"customHeaders\":{\"type\":\"SecureObject\"},\"actions\":{\"type\":\"Array\",\"value\":[\"push\"]},\"status\":{\"type\":\"String\",\"value\":\"enabled\"},\"scope\":{\"type\":\"String\",\"value\":\"\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-14T05:47:58.9717589Z\",\"duration\":\"PT17.5659974S\",\"correlationId\":\"c4fc9e92-912e-465f-8469-2342255d2335\",\"providers\":[{\"namespace\":\"Microsoft.ContainerRegistry\",\"resourceTypes\":[{\"resourceType\":\"registries/webhooks\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ContainerRegistry/registries/zhoxingtest/webhooks/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/lumagatena.resourcescheduler-20200514132040\",\"name\":\"lumagatena.resourcescheduler-20200514132040\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test\",\"marketplaceItemId\":\"lumagatena.resourceschedulerent\"},\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/lumagatena.resourcescheduler-b0655f11-493e-40aa-b54e-9229ae04f5fc-ent/Artifacts/DefaultTemplate\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"17406019195718949633\",\"parameters\":{\"resourcePrefix\":{\"type\":\"String\",\"value\":\"zhoxing\"},\"appInsightsLocation\":{\"type\":\"String\",\"value\":\"westcentralus\"},\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"_artifactsLocation\":{\"type\":\"String\",\"value\":\"https://catalogartifact.azureedge.net/publicartifacts/lumagatena.resourcescheduler-b0655f11-493e-40aa-b54e-9229ae04f5fc-ent/Artifacts/DefaultTemplate\"},\"_artifactsLocationSasToken\":{\"type\":\"SecureString\"},\"applicationResourceName\":{\"type\":\"String\",\"value\":\"ManagedResourceScheduler\"},\"managedResourceGroupId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mrg-resourcescheduler-20200514132040\"},\"managedIdentity\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Failed\",\"timestamp\":\"2020-05-14T05:28:41.6327612Z\",\"duration\":\"PT12.101002S\",\"correlationId\":\"315b4dd9-a0ca-4dc8-a455-0a0cbc76bc9b\",\"providers\":[{\"namespace\":\"Microsoft.Solutions\",\"resourceTypes\":[{\"resourceType\":\"applications\",\"locations\":[\"westus\"]}]}],\"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\":\"ResourcePurchaseValidationFailed\",\"message\":\"User failed validation to purchase resources. Error message: '{\\\"error\\\":{\\\"code\\\":\\\"AccountSetupError\\\",\\\"message\\\":\\\"You cannot purchase reservation because required AAD tenant information is missing. Please ask your tenant admin to fill this form: https://aka.ms/orgprofile\\\"}}'\"}]},\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.LogAnalyticsOMS\",\"name\":\"Microsoft.LogAnalyticsOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test11\",\"marketplaceItemId\":\"Microsoft.LogAnalyticsOMS\"},\"properties\":{\"templateHash\":\"11463598216708868146\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test11\"},\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"sku\":{\"type\":\"String\",\"value\":\"pergb2018\"},\"tags\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-11T02:46:11.2613852Z\",\"duration\":\"PT27.5799751S\",\"correlationId\":\"ef0d9b73-6d41-4e4a-8d72-14bb23335fbe\",\"providers\":[{\"namespace\":\"Microsoft.OperationalInsights\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test11\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/mainTemplate\",\"name\":\"mainTemplate\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"3218180314351156874\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-06T08:12:40.0695696Z\",\"duration\":\"PT3.0700022S\",\"correlationId\":\"780ef5f1-25d3-427c-b4f8-065b75ebd193\",\"providers\":[],\"dependencies\":[],\"outputs\":{\"deploymentOutput\":{\"type\":\"Object\",\"value\":{\"name\":\"mainTemplate\",\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[],\"outputs\":{\"deploymentOutput\":{\"type\":\"Object\",\"value\":\"[deployment()]\"}}},\"templateHash\":\"3218180314351156874\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\"}}}},\"outputResources\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/specially-encoded-template\",\"name\":\"specially-encoded-template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1888782782781528452\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-04-30T07:03:23.7207451Z\",\"duration\":\"PT4.0436353S\",\"correlationId\":\"bfb6b403-aaf7-45fa-a24f-d6f55381b616\",\"providers\":[{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"scheduledQueryRules\",\"locations\":[\"japaneast\"]}]}],\"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\":\"LinkedAuthorizationFailed\",\"message\":\"The client has permission to perform action 'microsoft.insights/actiongroups/read' on scope '/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Insights/scheduledQueryRules/armtemplate-alert-japanese-utf8', however the linked subscription '{subscriptionId}' was not found. \"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200421145256\",\"name\":\"Microsoft.StorageAccount-20200421145256\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing2\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxing2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-21T06:54:42.0368957Z\",\"duration\":\"PT33.1713846S\",\"correlationId\":\"41acf011-d899-4a7d-afa8-cb184a71b868\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200421145114\",\"name\":\"Microsoft.StorageAccount-20200421145114\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\",\"marketplaceItemId\":\"Microsoft.StorageAccount-ARM\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-21T06:53:03.6973431Z\",\"duration\":\"PT32.8398506S\",\"correlationId\":\"e599a79d-ca38-4d53-a312-783dcd52892b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200421134632\",\"name\":\"Microsoft.StorageAccount-20200421134632\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"FileStorage\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-21T05:51:14.8318342Z\",\"duration\":\"PT34.9084997S\",\"correlationId\":\"3027cf64-8a93-4cfe-b676-0cc36f44cd62\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200420165822\",\"name\":\"Microsoft.StorageAccount-20200420165822\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"1076588640741720503\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Standard_RAGRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"accessTier\":{\"type\":\"String\",\"value\":\"Hot\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true},\"isHnsEnabled\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-20T09:02:06.2473506Z\",\"duration\":\"PT2M4.9663424S\",\"correlationId\":\"f0fc9ae7-540f-4024-9599-910ec442b728\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.AlertManagementOMS\",\"name\":\"Microsoft.AlertManagementOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AlertManagement(zhoxing-test)\",\"marketplaceItemId\":\"Microsoft.AlertManagementOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.AlertManagementOMS.1.0.21/Artifacts/CreateResources.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4518277868068772365\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"AlertManagement\"]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-20T02:46:25.1922657Z\",\"duration\":\"PT10.0635592S\",\"correlationId\":\"ff16ce44-6269-4887-8657-1339b2c0e993\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AlertManagement(zhoxing-test)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/CreateVm-Canonical.UbuntuServer-18.04-LTS-20200417160045\",\"name\":\"CreateVm-Canonical.UbuntuServer-18.04-LTS-20200417160045\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.VirtualMachine\",\"provisioningHash\":\"SolutionProvider\"},\"properties\":{\"templateHash\":\"7172804404965899907\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"networkInterfaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test801\"},\"subnetName\":{\"type\":\"String\",\"value\":\"default\"},\"virtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxing-test\"},\"virtualMachineName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"virtualMachineRG\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"osDiskType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"virtualMachineSize\":{\"type\":\"String\",\"value\":\"Standard_D2s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagnosticsStorageAccountName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"diagnosticsStorageAccountId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-17T08:04:15.7864236Z\",\"duration\":\"PT48.1102756S\",\"correlationId\":\"01ac1c40-8120-4df9-bf04-a1e246c34fba\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]},{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test801\",\"resourceType\":\"Microsoft.Network/networkInterfaces\",\"resourceName\":\"zhoxing-test801\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\",\"resourceType\":\"Microsoft.Compute/virtualMachines\",\"resourceName\":\"zhoxing-test\"}],\"outputs\":{\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test801\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/SolutionDeployment-20200416192508\",\"name\":\"SolutionDeployment-20200416192508\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"3423151013820430908\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-16T17:23:55.056176Z\",\"duration\":\"PT9.5703329S\",\"correlationId\":\"ad2ceb37-60e5-4809-aea7-536c8da31de2\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"australiacentral\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(zhoxing-test2)\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200415165139\",\"name\":\"Microsoft.StorageAccount-20200415165139\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"11961669741847493773\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"eastus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxing\"},\"accountType\":{\"type\":\"String\",\"value\":\"Standard_RAGRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"accessTier\":{\"type\":\"String\",\"value\":\"Hot\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-15T08:54:38.0110053Z\",\"duration\":\"PT1M43.6998278S\",\"correlationId\":\"b693853a-6a38-4b8f-87bc-f5d2f6fe889d\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.ContainersOMS\",\"name\":\"Microsoft.ContainersOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/Containers(zhoxing-workspace)\",\"marketplaceItemId\":\"Microsoft.ContainersOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.ContainersOMS.1.1.16/Artifacts/CreateResources.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4518277868068772365\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-workspace\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"Containers\"]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-11T07:47:27.1639894Z\",\"duration\":\"PT17.5510901S\",\"correlationId\":\"f4dcc639-0fc4-4282-aa8d-ffc272fceb81\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/Containers(zhoxing-workspace)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.AzureActivityOMS\",\"name\":\"Microsoft.AzureActivityOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AzureActivity(zhoxing-test)\",\"marketplaceItemId\":\"Microsoft.AzureActivityOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.AzureActivityOMS.1.0.24/Artifacts/CreateResourcesDS2.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"2824832969719392094\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"AzureActivity\"]},\"subscriptions\":{\"type\":\"Array\",\"value\":[{\"name\":\"0b1f64711bf04ddaaec3cb9272f09590\",\"value\":\"00000000-0000-0000-0000-000000000000\"}]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-08T07:33:45.2430768Z\",\"duration\":\"PT59.8719665S\",\"correlationId\":\"3e4ddc68-cf08-4767-9be7-60d8afb66c51\",\"providers\":[{\"namespace\":\"Microsoft.OperationalInsights\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"westus\"]},{\"resourceType\":\"workspaces/datasources\",\"locations\":[\"westus\"]}]},{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.OperationalInsights/workspaces\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test/datasources/0b1f64711bf04ddaaec3cb9272f09590\",\"resourceType\":\"Microsoft.OperationalInsights/workspaces/datasources\",\"resourceName\":\"zhoxing-test/0b1f64711bf04ddaaec3cb9272f09590\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test/datasources/0b1f64711bf04ddaaec3cb9272f09590\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AzureActivity(zhoxing-test)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.KeyVaultAnalyticsOMS\",\"name\":\"Microsoft.KeyVaultAnalyticsOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/KeyVaultAnalytics(zhoxing-test)\",\"marketplaceItemId\":\"Microsoft.KeyVaultAnalyticsOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.KeyVaultAnalyticsOMS.1.0.3/Artifacts/CreateResources.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4518277868068772365\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"KeyVaultAnalytics\"]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-08T07:31:14.5063619Z\",\"duration\":\"PT1M57.3764608S\",\"correlationId\":\"e06589b6-9999-46b0-acd8-746d94a7929e\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/KeyVaultAnalytics(zhoxing-test)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.AzureSQLAnalyticsOMS\",\"name\":\"Microsoft.AzureSQLAnalyticsOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AzureSQLAnalytics(zhoxing-test2)\",\"marketplaceItemId\":\"Microsoft.AzureSQLAnalyticsOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.AzureSQLAnalyticsOMS.1.0.4/Artifacts/CreateResources.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4518277868068772365\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"australiacentral\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test2\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"AzureSQLAnalytics\"]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-08T07:28:49.7614647Z\",\"duration\":\"PT14.0840378S\",\"correlationId\":\"e9334b54-aa8b-40f6-aa91-57407411b296\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"australiacentral\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AzureSQLAnalytics(zhoxing-test2)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.RecoveryServicesV2\",\"name\":\"Microsoft.RecoveryServicesV2\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.RecoveryServices/vaults/zhoxing-test3\",\"marketplaceItemId\":\"Microsoft.RecoveryServices\"},\"properties\":{\"templateHash\":\"3053162932619023657\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test3\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"apiVersion\":{\"type\":\"String\",\"value\":\"2016-06-01\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-08T06:25:27.3405945Z\",\"duration\":\"PT1M48.3942152S\",\"correlationId\":\"2deaa1e6-0adc-46a3-b111-fe8f37f1b398\",\"providers\":[{\"namespace\":\"Microsoft.RecoveryServices\",\"resourceTypes\":[{\"resourceType\":\"vaults\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.RecoveryServices/vaults/zhoxing-test3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.AutomationAccount\",\"name\":\"Microsoft.AutomationAccount\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\",\"marketplaceItemId\":\"Microsoft.AutomationAccount\"},\"properties\":{\"templateHash\":\"5138374320965475375\",\"parameters\":{\"accountName\":{\"type\":\"String\",\"value\":\"zhoxingtest-account\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"sampleGraphicalRunbookName\":{\"type\":\"String\",\"value\":\"AzureAutomationTutorial\"},\"sampleGraphicalRunbookDescription\":{\"type\":\"String\",\"value\":\" An example runbook which gets all the ARM resources using the Run As Account (Service Principal).\"},\"sampleGraphicalRunbookContentUri\":{\"type\":\"String\",\"value\":\"https://eus2oaasibizamarketprod1.blob.core.windows.net/marketplace-runbooks/AzureAutomationTutorial.graphrunbook\"},\"samplePowerShellRunbookName\":{\"type\":\"String\",\"value\":\"AzureAutomationTutorialScript\"},\"samplePowerShellRunbookDescription\":{\"type\":\"String\",\"value\":\" An example runbook which gets all the ARM resources using the Run As Account (Service Principal).\"},\"samplePowerShellRunbookContentUri\":{\"type\":\"String\",\"value\":\"https://eus2oaasibizamarketprod1.blob.core.windows.net/marketplace-runbooks/AzureAutomationTutorial.ps1\"},\"samplePython2RunbookName\":{\"type\":\"String\",\"value\":\"AzureAutomationTutorialPython2\"},\"samplePython2RunbookDescription\":{\"type\":\"String\",\"value\":\" An example runbook which gets all the ARM resources using the Run As Account (Service Principal).\"},\"samplePython2RunbookContentUri\":{\"type\":\"String\",\"value\":\"https://eus2oaasibizamarketprod1.blob.core.windows.net/marketplace-runbooks/AzureAutomationTutorialPython2.py\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-07T05:48:49.7005559Z\",\"duration\":\"PT18.8833457S\",\"correlationId\":\"ee614d1b-52ab-4ef0-afdf-d922915f2b3e\",\"providers\":[{\"namespace\":\"Microsoft.Automation\",\"resourceTypes\":[{\"resourceType\":\"automationAccounts\",\"locations\":[\"westus\"]},{\"resourceType\":\"automationAccounts/runbooks\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\",\"resourceType\":\"Microsoft.Automation/automationAccounts\",\"resourceName\":\"zhoxingtest-account\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorial\",\"resourceType\":\"Microsoft.Automation/automationAccounts/runbooks\",\"resourceName\":\"zhoxingtest-account/AzureAutomationTutorial\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\",\"resourceType\":\"Microsoft.Automation/automationAccounts\",\"resourceName\":\"zhoxingtest-account\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorialScript\",\"resourceType\":\"Microsoft.Automation/automationAccounts/runbooks\",\"resourceName\":\"zhoxingtest-account/AzureAutomationTutorialScript\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\",\"resourceType\":\"Microsoft.Automation/automationAccounts\",\"resourceName\":\"zhoxingtest-account\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorialPython2\",\"resourceType\":\"Microsoft.Automation/automationAccounts/runbooks\",\"resourceName\":\"zhoxingtest-account/AzureAutomationTutorialPython2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorial\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorialPython2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorialScript\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment2\",\"name\":\"vmDiagDeployment2\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/vmDiagnostics.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4451127679186685416\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSQL-vm\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:59:42.5985993Z\",\"duration\":\"PT1M26.6277747S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines/extensions\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"idgdiag6472qnxl3vv5o\",\"actionName\":\"listkeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\"resourceType\":\"Microsoft.Compute/virtualMachines/extensions\",\"resourceName\":\"IdgSQL-vm/Microsoft.Insights.VMDiagnosticsSettings\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment0\",\"name\":\"vmDiagDeployment0\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/vmDiagnostics.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4451127679186685416\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgProv-vm\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:59:11.4939667Z\",\"duration\":\"PT56.0439465S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines/extensions\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"idgdiag6472qnxl3vv5o\",\"actionName\":\"listkeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\"resourceType\":\"Microsoft.Compute/virtualMachines/extensions\",\"resourceName\":\"IdgProv-vm/Microsoft.Insights.VMDiagnosticsSettings\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment3\",\"name\":\"vmDiagDeployment3\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/vmDiagnostics.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4451127679186685416\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSSIS-vm\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:58:54.7494606Z\",\"duration\":\"PT1M20.2135439S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines/extensions\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"idgdiag6472qnxl3vv5o\",\"actionName\":\"listkeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\"resourceType\":\"Microsoft.Compute/virtualMachines/extensions\",\"resourceName\":\"IdgSSIS-vm/Microsoft.Insights.VMDiagnosticsSettings\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment1\",\"name\":\"vmDiagDeployment1\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/vmDiagnostics.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4451127679186685416\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgBridge-vm\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:59:07.2319602Z\",\"duration\":\"PT2M38.7113347S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines/extensions\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"idgdiag6472qnxl3vv5o\",\"actionName\":\"listkeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\"resourceType\":\"Microsoft.Compute/virtualMachines/extensions\",\"resourceName\":\"IdgBridge-vm/Microsoft.Insights.VMDiagnosticsSettings\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment3\",\"name\":\"vmDeployment3\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualMachines.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10830273775427581387\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSSIS-vm\"},\"vmSize\":{\"type\":\"String\",\"value\":\"Standard_D8s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:57:30.3562117Z\",\"duration\":\"PT1M29.1949855S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment2\",\"name\":\"vmDeployment2\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualMachines.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10830273775427581387\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSQL-vm\"},\"vmSize\":{\"type\":\"String\",\"value\":\"Standard_D8s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:56:55.9936166Z\",\"duration\":\"PT1M3.9200963S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment0\",\"name\":\"vmDeployment0\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualMachines.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10830273775427581387\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgProv-vm\"},\"vmSize\":{\"type\":\"String\",\"value\":\"Standard_D8s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:57:34.837224Z\",\"duration\":\"PT1M48.2756885S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment1\",\"name\":\"vmDeployment1\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualMachines.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10830273775427581387\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgBridge-vm\"},\"vmSize\":{\"type\":\"String\",\"value\":\"Standard_D2s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:56:23.0087151Z\",\"duration\":\"PT51.2902622S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment0\",\"name\":\"nicDeployment0\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkInterfaces.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12524672659573940803\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgProv-vm\"},\"acclNetwork\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:37.7038947Z\",\"duration\":\"PT17.584134S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgProv-vm-nic\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment1\",\"name\":\"nicDeployment1\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkInterfaces.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12524672659573940803\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgBridge-vm\"},\"acclNetwork\":{\"type\":\"Bool\",\"value\":false}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:25.6276069Z\",\"duration\":\"PT5.5078479S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgBridge-vm-nic\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment2\",\"name\":\"nicDeployment2\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkInterfaces.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12524672659573940803\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSQL-vm\"},\"acclNetwork\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:29.9412006Z\",\"duration\":\"PT9.825009S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgSQL-vm-nic\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment3\",\"name\":\"nicDeployment3\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkInterfaces.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12524672659573940803\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSSIS-vm\"},\"acclNetwork\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:30.4694553Z\",\"duration\":\"PT10.630804S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgSSIS-vm-nic\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"name\":\"vnetDeployment\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualNetworks.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"5494195655921763108\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"idgAppVnetCidr\":{\"type\":\"String\",\"value\":\"192.168.1.0/24\"},\"dnsServer\":{\"type\":\"String\",\"value\":\"127.0.0.1\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:05.4129775Z\",\"duration\":\"PT2M41.4654211S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/IdgApp-vnet\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/pid-da2390a8-7157-4348-8621-c0976bd5f1c6\",\"name\":\"pid-da2390a8-7157-4348-8621-c0976bd5f1c6\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1785727386360713170\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:51:50.5099687Z\",\"duration\":\"PT1.8954266S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[],\"dependencies\":[],\"outputResources\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nsgDeployment\",\"name\":\"nsgDeployment\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkSecurityGroups.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10642932090194121923\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:52:13.8036944Z\",\"duration\":\"PT25.4723982S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/IdgApp-nsg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"name\":\"storageAcctDeployment\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/storageAccounts.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"18339431791584614211\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:53:52.4748921Z\",\"duration\":\"PT2M4.9763098S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/imprivatainc1580479939967.imprivata-identity-gove-20200403164818\",\"name\":\"imprivatainc1580479939967.imprivata-identity-gove-20200403164818\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test\",\"marketplaceItemId\":\"imprivatainc1580479939967.imprivata-identity-governance-solutionidgstandardplan\"},\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/mainTemplate.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"859551663346694352\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"idgAppVnetCidr\":{\"type\":\"String\",\"value\":\"192.168.1.0/24\"},\"dnsServer\":{\"type\":\"String\",\"value\":\"127.0.0.1\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"_artifactsLocation\":{\"type\":\"String\",\"value\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/mainTemplate.json\"},\"_artifactsLocationSasToken\":{\"type\":\"SecureString\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T09:01:06.5682687Z\",\"duration\":\"PT9M29.2016413S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nsgDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nsgDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment0\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment2\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment3\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment0\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment0\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment2\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment2\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment3\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment3\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment0\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageAcctDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDiagDeployment0\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageAcctDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDiagDeployment1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageAcctDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDiagDeployment2\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageAcctDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDiagDeployment3\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgBridge-vm-nic\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgProv-vm-nic\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgSQL-vm-nic\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgSSIS-vm-nic\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/IdgApp-nsg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/IdgApp-vnet\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/simple_deploy_template\",\"name\":\"simple_deploy_template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"3058235493749754305\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"test-lb\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"privateIPAllocationMethod\":{\"type\":\"String\",\"value\":\"Dynamic\"},\"tags\":{\"type\":\"Object\",\"value\":{\"key\":\"super=value\"}}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-04-02T03:06:24.1818395Z\",\"duration\":\"PT14.8233657S\",\"correlationId\":\"ca708581-b371-4382-a6d6-5abec0f80d25\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"loadBalancers\",\"locations\":[\"westus\"]}]}],\"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\":\"InvalidTemplate\",\"message\":\"Unable to process template language expressions for resource '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/loadBalancers/test-lb' at line '1' and column '319'. 'The template parameter 'backendAddressPools' is not found. Please see https://aka.ms/arm-template/#parameters for usage details.'\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.CDN-Profilee5b1f1ba-1864-485e-9ad6-f8bd9a3ce039\",\"name\":\"Microsoft.CDN-Profilee5b1f1ba-1864-485e-9ad6-f8bd9a3ce039\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/microsoft.cdn/profiles/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.CDN\"},\"properties\":{\"templateHash\":\"14732945376673591230\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"Global\"},\"sku\":{\"type\":\"Object\",\"value\":{\"name\":\"Standard_Microsoft\"}},\"properties\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-02T03:06:06.8118181Z\",\"duration\":\"PT27.868616S\",\"correlationId\":\"ec814e94-c7c8-415e-b86f-9d7d9365a8e2\",\"providers\":[{\"namespace\":\"microsoft.cdn\",\"resourceTypes\":[{\"resourceType\":\"profiles\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.cdn/profiles/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Web-WebApp-Portal-2f67a819-99c8\",\"name\":\"Microsoft.Web-WebApp-Portal-2f67a819-99c8\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.WebSite\"},\"properties\":{\"templateHash\":\"46673888788683167\",\"parameters\":{\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"location\":{\"type\":\"String\",\"value\":\"Central US\"},\"hostingEnvironment\":{\"type\":\"String\",\"value\":\"\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"ASP-zhoxingtest-b6db\"},\"serverFarmResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"alwaysOn\":{\"type\":\"Bool\",\"value\":true},\"linuxFxVersion\":{\"type\":\"String\",\"value\":\"DOTNETCORE|3.1\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-21T05:03:38.610818Z\",\"duration\":\"PT1M56.1369546S\",\"correlationId\":\"23ea4696-8e18-4ddb-a5b6-41d7796bee9b\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"sites\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.SSL\",\"name\":\"Microsoft.SSL\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.SSL\"},\"properties\":{\"templateHash\":\"12688158336463581370\",\"parameters\":{\"certificateOrderName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"distinguishedName\":{\"type\":\"String\",\"value\":\"CN=azure.com\"},\"validityInYears\":{\"type\":\"Int\",\"value\":1},\"productType\":{\"type\":\"String\",\"value\":\"StandardDomainValidatedSsl\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-16T02:40:16.9924212Z\",\"duration\":\"PT2M46.4663723S\",\"correlationId\":\"9471490e-7e59-467d-8f14-48f8ccd95222\",\"providers\":[{\"namespace\":\"Microsoft.CertificateRegistration\",\"resourceTypes\":[{\"resourceType\":\"certificateOrders\",\"locations\":[\"global\"]},{\"resourceType\":\"certificateOrders/providers/locks\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test\",\"resourceType\":\"Microsoft.CertificateRegistration/certificateOrders\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test/providers/Microsoft.Authorization/locks/zhoxing-test\",\"resourceType\":\"Microsoft.CertificateRegistration/certificateOrders/providers/locks\",\"resourceName\":\"zhoxing-test/Microsoft.Authorization/zhoxing-test\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test/providers/Microsoft.Authorization/locks/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Web-WebApp-Portal-a6e35847-84dc\",\"name\":\"Microsoft.Web-WebApp-Portal-a6e35847-84dc\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test3\",\"marketplaceItemId\":\"Microsoft.WebSite\"},\"properties\":{\"templateHash\":\"3507869378131688434\",\"parameters\":{\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test3\"},\"location\":{\"type\":\"String\",\"value\":\"North Europe\"},\"hostingEnvironment\":{\"type\":\"String\",\"value\":\"\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"ASP-zhoxingtest-a4dc\"},\"serverFarmResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"alwaysOn\":{\"type\":\"Bool\",\"value\":true},\"sku\":{\"type\":\"String\",\"value\":\"PremiumV2\"},\"skuCode\":{\"type\":\"String\",\"value\":\"P1v2\"},\"workerSize\":{\"type\":\"String\",\"value\":\"3\"},\"workerSizeId\":{\"type\":\"String\",\"value\":\"3\"},\"numberOfWorkers\":{\"type\":\"String\",\"value\":\"1\"},\"linuxFxVersion\":{\"type\":\"String\",\"value\":\"TOMCAT|8.5-java11\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-09T09:44:30.0394772Z\",\"duration\":\"PT2M14.3998742S\",\"correlationId\":\"e9c6365d-1b9d-47cb-88bc-2ff7a7aef6e2\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"sites\",\"locations\":[\"northeurope\"]},{\"resourceType\":\"serverfarms\",\"locations\":[\"northeurope\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-zhoxingtest-a4dc\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-zhoxingtest-a4dc\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test3\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"zhoxing-test3\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-zhoxingtest-a4dc\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Azconfig_1\",\"name\":\"Microsoft.Azconfig_1\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.AppConfiguration/configurationStores/zhoxig-test\",\"marketplaceItemId\":\"Microsoft.Azconfig\"},\"properties\":{\"templateHash\":\"7820839542378675066\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxig-test\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"apiVersion\":{\"type\":\"String\",\"value\":\"2019-11-01-preview\"},\"sku\":{\"type\":\"String\",\"value\":\"standard\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-09T09:37:48.9475481Z\",\"duration\":\"PT1M9.4420097S\",\"correlationId\":\"309d8e1f-d83b-41af-a2b4-4fc2b8cf01f8\",\"providers\":[{\"namespace\":\"Microsoft.AppConfiguration\",\"resourceTypes\":[{\"resourceType\":\"configurationStores\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.AppConfiguration/configurationStores/zhoxig-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Azconfig\",\"name\":\"Microsoft.Azconfig\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.AppConfiguration/configurationStores/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.Azconfig\"},\"properties\":{\"templateHash\":\"7820839542378675066\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"apiVersion\":{\"type\":\"String\",\"value\":\"2019-11-01-preview\"},\"sku\":{\"type\":\"String\",\"value\":\"standard\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-09T09:36:45.6118614Z\",\"duration\":\"PT42.8616547S\",\"correlationId\":\"f6250c7e-1445-48f4-9a75-cb108ec016f2\",\"providers\":[{\"namespace\":\"Microsoft.AppConfiguration\",\"resourceTypes\":[{\"resourceType\":\"configurationStores\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.AppConfiguration/configurationStores/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Web-WebApp-Portal-79a51ab5-9a12\",\"name\":\"Microsoft.Web-WebApp-Portal-79a51ab5-9a12\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test2\",\"marketplaceItemId\":\"Microsoft.WebSite\"},\"properties\":{\"templateHash\":\"17885055924378240489\",\"parameters\":{\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test2\"},\"location\":{\"type\":\"String\",\"value\":\"Central US\"},\"hostingEnvironment\":{\"type\":\"String\",\"value\":\"\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"ASP-zhoxingtest-b6db\"},\"serverFarmResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"alwaysOn\":{\"type\":\"Bool\",\"value\":true},\"linuxFxVersion\":{\"type\":\"String\",\"value\":\"JAVA|11-java11\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-09T07:58:15.4849103Z\",\"duration\":\"PT2M54.4266008S\",\"correlationId\":\"f548362c-5720-4a35-aff0-6d85c593147b\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"sites\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.VirtualNetwork-20200306160007\",\"name\":\"Microsoft.VirtualNetwork-20200306160007\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.VirtualNetwork-ARM\"},\"properties\":{\"templateHash\":\"417543149591126485\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"virtualNetworkName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"resourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"addressSpaces\":{\"type\":\"Array\",\"value\":[\"10.13.0.0/16\"]},\"ipv6Enabled\":{\"type\":\"Bool\",\"value\":false},\"subnetCount\":{\"type\":\"Int\",\"value\":1},\"subnet0_name\":{\"type\":\"String\",\"value\":\"default\"},\"subnet0_addressRange\":{\"type\":\"String\",\"value\":\"10.13.0.0/24\"},\"ddosProtectionPlanEnabled\":{\"type\":\"Bool\",\"value\":false},\"firewallEnabled\":{\"type\":\"Bool\",\"value\":false},\"bastionEnabled\":{\"type\":\"Bool\",\"value\":false}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-06T08:01:51.58624Z\",\"duration\":\"PT52.5208802S\",\"correlationId\":\"7edf093d-47e5-491f-9168-3824b2f63bfe\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/VirtualNetworks/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/template-file\",\"name\":\"template-file\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"702802757667029667\",\"parameters\":{\"function-app-name\":{\"type\":\"String\",\"value\":\"orderProcessing\"},\"sku\":{\"type\":\"String\",\"value\":\"S3\"},\"storageAccountType\":{\"type\":\"String\",\"value\":\"Standard_LRS\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"},\"deploymentEnvironment\":{\"type\":\"String\",\"value\":\"CI\"},\"applicationSettings\":{\"type\":\"Object\",\"value\":{\"CI\":{\"AzureWebJobsStorage\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsDashboard\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBusSource\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ApplicationServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MenuDataMobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDPDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbEndPointUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbAuthKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"CosmosDBConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.MoBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.X-Company-Id\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.keyId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.secretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceEndpoint\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ShareFolderName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.OrderMenuFolder\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternateUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.UserId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternatePort\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.ReversalTimeout\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.MaxGiftCardBalance\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.SecretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.Scope\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Cancel\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Return\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RefreshTokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"stripeapikeyprivatekey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeApiKeyPubKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"RetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCardLimit\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SignalNotificationHubUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"NotificationHubName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultFullSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultListenSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LoyaltyWebserviceAddress\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EnableValidation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.BasicAuthenticationKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DeploymentEnv\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.DefaultItemQuantity\":\"1\",\"Aloha.Terminal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.ValidateFailedItems\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"POS.ThresholdPercent\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.TokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SupportEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.UserName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LogOrderStep\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EmergencyClosureMinutesToCancellation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceBusMaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"XpientMaxOrderRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\"},\"DEV\":{\"AzureWebJobsStorage\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsDashboard\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBusSource\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ApplicationServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MenuDataMobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDPDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbEndPointUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbAuthKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"CosmosDBConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.MoBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.X-Company-Id\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.keyId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.secretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceEndpoint\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ShareFolderName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.OrderMenuFolder\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternateUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.UserId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternatePort\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.ReversalTimeout\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.MaxGiftCardBalance\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.SecretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.Scope\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Cancel\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Return\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RefreshTokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"stripeapikeyprivatekey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeApiKeyPubKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCurrency\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCentsMultiplier\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"RetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCardLimit\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SignalNotificationHubUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"NotificationHubName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultFullSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultListenSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LoyaltyWebserviceAddress\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EnableValidation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.BasicAuthenticationKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DeploymentEnv\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.DefaultItemQuantity\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.Terminal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.ValidateFailedItems\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"POS.ThresholdPercent\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.TokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SupportEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.UserName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LogOrderStep\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EmergencyClosureMinutesToCancellation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceBusMaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"XpientMaxOrderRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\"},\"QA\":{\"AzureWebJobsStorage\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsDashboard\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBusSource\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ApplicationServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MenuDataMobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDPDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbEndPointUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbAuthKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"CosmosDBConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.MoBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.X-Company-Id\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.keyId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.secretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceEndpoint\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ShareFolderName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.OrderMenuFolder\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternateUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.UserId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternatePort\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.ReversalTimeout\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.MaxGiftCardBalance\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.SecretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.Scope\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Cancel\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Return\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RefreshTokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"stripeapikeyprivatekey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeApiKeyPubKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"RetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCardLimit\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SignalNotificationHubUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"NotificationHubName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultFullSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultListenSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LoyaltyWebserviceAddress\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EnableValidation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.BasicAuthenticationKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DeploymentEnv\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.DefaultItemQuantity\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.Terminal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.ValidateFailedItems\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"POS.ThresholdPercent\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.TokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SupportEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.UserName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LogOrderStep\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EmergencyClosureMinutesToCancellation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceBusMaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"XpientMaxOrderRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\"},\"STG\":{\"AzureWebJobsStorage\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsDashboard\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBusSource\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ApplicationServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MenuDataMobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDPDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbEndPointUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbAuthKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"CosmosDBConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.MoBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.X-Company-Id\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.keyId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.secretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceEndpoint\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ShareFolderName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.OrderMenuFolder\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternateUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.UserId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternatePort\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.ReversalTimeout\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.MaxGiftCardBalance\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.SecretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.Scope\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Cancel\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Return\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RefreshTokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"stripeapikeyprivatekey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeApiKeyPubKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"RetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCardLimit\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SignalNotificationHubUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"NotificationHubName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultFullSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultListenSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LoyaltyWebserviceAddress\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EnableValidation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.BasicAuthenticationKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DeploymentEnv\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.DefaultItemQuantity\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.Terminal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.ValidateFailedItems\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"POS.ThresholdPercent\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.TokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SupportEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.UserName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LogOrderStep\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EmergencyClosureMinutesToCancellation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceBusMaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"XpientMaxOrderRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\"},\"TRN\":{\"AzureWebJobsStorage\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsDashboard\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBusSource\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ApplicationServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MenuDataMobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDPDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbEndPointUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbAuthKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"CosmosDBConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.MoBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.X-Company-Id\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.keyId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.secretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceEndpoint\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ShareFolderName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.OrderMenuFolder\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternateUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.UserId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternatePort\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.ReversalTimeout\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.MaxGiftCardBalance\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.SecretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.Scope\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Cancel\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Return\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RefreshTokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"stripeapikeyprivatekey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeApiKeyPubKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"RetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCardLimit\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SignalNotificationHubUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"NotificationHubName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultFullSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultListenSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LoyaltyWebserviceAddress\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EnableValidation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.BasicAuthenticationKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DeploymentEnv\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.DefaultItemQuantity\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.Terminal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.ValidateFailedItems\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"POS.ThresholdPercent\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.TokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SupportEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.UserName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LogOrderStep\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EmergencyClosureMinutesToCancellation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceBusMaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"XpientMaxOrderRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\"},\"PROD\":{\"AzureWebJobsStorage\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsDashboard\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureWebJobsServiceBusSource\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ApplicationServiceBus\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MenuDataMobileDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDPDbConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbEndPointUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"OrdersDocDbAuthKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FunctionsAppKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"CosmosDBConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.MoBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.X-Company-Id\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.keyId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.secretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Xpient.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceEndpoint\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.MaxLane\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ShareFolderName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.ConnectionString\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"AzureStorage.OrderMenuFolder\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternateUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.UserId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.AlternatePort\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.ReversalTimeout\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Givex.MaxGiftCardBalance\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.BaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.SecretKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Paypal.Scope\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Cancel\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl.Return\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RedirectUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"PayPal.RefreshTokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"stripeapikeyprivatekey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeApiKeyPubKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"RetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"StripeCardLimit\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SignalNotificationHubUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"NotificationHubName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultFullSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DefaultListenSharedAccessSignature\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LoyaltyWebserviceAddress\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EnableValidation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"MaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.PortalBaseUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.BasicAuthenticationKey\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"DeploymentEnv\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.HonorLocalPriceCalculation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.DefaultItemQuantity\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.Terminal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Aloha.ValidateFailedItems\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"POS.ThresholdPercent\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.TokenUrl\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientId.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"IDP.ClientSecret.Internal\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"FromName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"SupportEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.UserName\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"LogOrderStep\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"EmergencyClosureMinutesToCancellation\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"ServiceBusMaxRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\",\"XpientMaxOrderRetryCount\":\"qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890qwertyuiopasdfghjklzxcvbnm1234567890\"}}}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-03-04T10:14:30.6077838Z\",\"duration\":\"PT2M24.8861662S\",\"correlationId\":\"08fd1339-c062-4621-bef4-5e08fdc0c2c0\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"southcentralus\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/config\",\"locations\":[null]},{\"resourceType\":\"sites/slots\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/slots/config\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/appInsights-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"appInsights-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/config\",\"resourceName\":\"orderProcessing/appsettings\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/slots/config\",\"resourceName\":\"orderProcessing/stage/appsettings\"}],\"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\":[{\"message\":\"Website with given name orderProcessing already exists.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200303110739\",\"name\":\"Microsoft.StorageAccount-20200303110739\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\",\"marketplaceItemId\":\"Microsoft.StorageAccount-ARM\"},\"properties\":{\"templateHash\":\"11961669741847493773\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Standard_RAGRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"accessTier\":{\"type\":\"String\",\"value\":\"Hot\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-03T03:10:37.6643123Z\",\"duration\":\"PT2M0.5505696S\",\"correlationId\":\"7052b29c-5b03-4e4f-8454-72c45a2e3cdd\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-c5af8169\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-c5af8169\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"5172196015951101467\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-27T08:34:39.2688632Z\",\"duration\":\"PT14.8304657S\",\"correlationId\":\"71919fa6-53e8-4069-bcf1-fe70e2bbd3ab\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - appInsights-6472qnxl3vv5o\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/ManagedDisk.zhoxing-test-20200226171012\",\"name\":\"ManagedDisk.zhoxing-test-20200226171012\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/disks/zhoxing-test\"},\"properties\":{\"templateHash\":\"12039005862602491955\",\"parameters\":{\"diskName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"sku\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"diskSizeGb\":{\"type\":\"Int\",\"value\":1024},\"sourceResourceId\":{\"type\":\"String\",\"value\":\"\"},\"sourceUri\":{\"type\":\"String\",\"value\":\"\"},\"osType\":{\"type\":\"String\",\"value\":\"\"},\"createOption\":{\"type\":\"String\",\"value\":\"empty\"},\"hyperVGeneration\":{\"type\":\"String\",\"value\":\"V1\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-26T09:11:00.2182814Z\",\"duration\":\"PT38.6717939S\",\"correlationId\":\"3f30fb4e-5cd6-4d09-a86e-fe409e7cbf7f\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"disks\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/disks/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/CreateVm-Canonical.UbuntuServer-18.04-LTS-20200226163817\",\"name\":\"CreateVm-Canonical.UbuntuServer-18.04-LTS-20200226163817\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.VirtualMachine\",\"provisioningHash\":\"SolutionProvider\"},\"properties\":{\"templateHash\":\"1155335703276677740\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"networkInterfaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test115\"},\"networkSecurityGroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test-nsg\"},\"networkSecurityGroupRules\":{\"type\":\"Array\",\"value\":[{\"name\":\"SSH\",\"properties\":{\"priority\":300,\"protocol\":\"TCP\",\"access\":\"Allow\",\"direction\":\"Inbound\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\"}}]},\"subnetName\":{\"type\":\"String\",\"value\":\"Dtlzhoxing-testSubnet\"},\"virtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/Dtlzhoxing-test\"},\"publicIpAddressName\":{\"type\":\"String\",\"value\":\"zhoxing-test-ip\"},\"publicIpAddressType\":{\"type\":\"String\",\"value\":\"Dynamic\"},\"publicIpAddressSku\":{\"type\":\"String\",\"value\":\"Basic\"},\"virtualMachineName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"virtualMachineRG\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"osDiskType\":{\"type\":\"String\",\"value\":\"Standard_LRS\"},\"ephemeralDiskType\":{\"type\":\"String\",\"value\":\"Local\"},\"virtualMachineSize\":{\"type\":\"String\",\"value\":\"Standard_D2s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPublicKey\":{\"type\":\"SecureString\"},\"diagnosticsStorageAccountName\":{\"type\":\"String\",\"value\":\"azhoxingtest9851\"},\"diagnosticsStorageAccountId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/azhoxingtest9851\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-26T08:51:00.5987566Z\",\"duration\":\"PT5M19.5821373S\",\"correlationId\":\"e1c52866-133b-46c5-b44f-4b189342f502\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"westus\"]},{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"westus\"]},{\"resourceType\":\"publicIpAddresses\",\"locations\":[\"westus\"]}]},{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test-nsg\",\"resourceType\":\"Microsoft.Network/networkSecurityGroups\",\"resourceName\":\"zhoxing-test-nsg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/publicIpAddresses/zhoxing-test-ip\",\"resourceType\":\"Microsoft.Network/publicIpAddresses\",\"resourceName\":\"zhoxing-test-ip\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test115\",\"resourceType\":\"Microsoft.Network/networkInterfaces\",\"resourceName\":\"zhoxing-test115\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test115\",\"resourceType\":\"Microsoft.Network/networkInterfaces\",\"resourceName\":\"zhoxing-test115\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\",\"resourceType\":\"Microsoft.Compute/virtualMachines\",\"resourceName\":\"zhoxing-test\"}],\"outputs\":{\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test115\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test-nsg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/publicIpAddresses/zhoxing-test-ip\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.ManagedDisk-20200226152558\",\"name\":\"Microsoft.ManagedDisk-20200226152558\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Compute/disks/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.ManagedDisk\"},\"properties\":{\"templateHash\":\"12039005862602491955\",\"parameters\":{\"diskName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"sku\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"diskSizeGb\":{\"type\":\"Int\",\"value\":1024},\"sourceResourceId\":{\"type\":\"String\",\"value\":\"\"},\"sourceUri\":{\"type\":\"String\",\"value\":\"\"},\"osType\":{\"type\":\"String\",\"value\":\"\"},\"createOption\":{\"type\":\"String\",\"value\":\"empty\"},\"hyperVGeneration\":{\"type\":\"String\",\"value\":\"\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-26T07:29:17.6989646Z\",\"duration\":\"PT1M45.6036662S\",\"correlationId\":\"a3b05ab7-7067-42de-8a8f-69fb50d29cd6\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"disks\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/disks/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-f2c320be\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-f2c320be\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"13072379069581100190\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-25T07:05:18.4469125Z\",\"duration\":\"PT1M34.5604185S\",\"correlationId\":\"f8973acb-0579-488d-8030-394695952ab2\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - zhoxing-test\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Web-FunctionApp-Portal-6d97c7e0-9fde\",\"name\":\"Microsoft.Web-FunctionApp-Portal-6d97c7e0-9fde\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.FunctionApp\",\"provisioningHash\":\"customize-to-open-functionapp-iframe-blade\"},\"properties\":{\"templateHash\":\"9962553435085722188\",\"parameters\":{\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"Central US\"},\"hostingEnvironment\":{\"type\":\"String\",\"value\":\"\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"ASP-zhoxingtest-b6db\"},\"serverFarmResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"alwaysOn\":{\"type\":\"Bool\",\"value\":true},\"storageAccountName\":{\"type\":\"String\",\"value\":\"storageaccountzhoxib2a8\"},\"linuxFxVersion\":{\"type\":\"String\",\"value\":\"DOCKER|mcr.microsoft.com/azure-functions/python:2.0-python3.7-appservice\"},\"sku\":{\"type\":\"String\",\"value\":\"PremiumV2\"},\"skuCode\":{\"type\":\"String\",\"value\":\"P1v2\"},\"workerSize\":{\"type\":\"String\",\"value\":\"3\"},\"workerSizeId\":{\"type\":\"String\",\"value\":\"3\"},\"numberOfWorkers\":{\"type\":\"String\",\"value\":\"1\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-25T06:57:31.252644Z\",\"duration\":\"PT4M23.4856285S\",\"correlationId\":\"84740008-300c-4c04-9d61-fd48d35228fe\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"sites\",\"locations\":[\"centralus\"]},{\"resourceType\":\"serverfarms\",\"locations\":[\"centralus\"]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]},{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/zhoxing-test\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-zhoxingtest-b6db\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-zhoxingtest-b6db\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"storageaccountzhoxib2a8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/zhoxing-test\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"zhoxing-test\",\"apiVersion\":\"2015-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"storageaccountzhoxib2a8\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"zhoxing-test\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-zhoxingtest-b6db\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.DevTestLab.15822636708715723\",\"name\":\"Microsoft.DevTestLab.15822636708715723\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.DevTestLab\"},\"properties\":{\"templateHash\":\"12517873995286308294\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"regionId\":{\"type\":\"String\",\"value\":\"westus\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-21T05:45:01.3414833Z\",\"duration\":\"PT2M52.6804059S\",\"correlationId\":\"95ef1f49-1b94-40e5-ae49-7bd3dd57aca7\",\"providers\":[{\"namespace\":\"Microsoft.DevTestLab\",\"resourceTypes\":[{\"resourceType\":\"labs\",\"locations\":[\"westus\"]},{\"resourceType\":\"labs/schedules\",\"locations\":[\"westus\"]},{\"resourceType\":\"labs/virtualNetworks\",\"locations\":[\"westus\"]},{\"resourceType\":\"labs/artifactSources\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\",\"resourceType\":\"Microsoft.DevTestLab/labs\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/schedules/LabVmsShutdown\",\"resourceType\":\"Microsoft.DevTestLab/labs/schedules\",\"resourceName\":\"zhoxing-test/LabVmsShutdown\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\",\"resourceType\":\"Microsoft.DevTestLab/labs\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/virtualNetworks/Dtlzhoxing-test\",\"resourceType\":\"Microsoft.DevTestLab/labs/virtualNetworks\",\"resourceName\":\"zhoxing-test/Dtlzhoxing-test\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\",\"resourceType\":\"Microsoft.DevTestLab/labs\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/artifactSources/Public Environment Repo\",\"resourceType\":\"Microsoft.DevTestLab/labs/artifactSources\",\"resourceName\":\"zhoxing-test/Public Environment Repo\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/artifactSources/Public Environment Repo\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/schedules/LabVmsShutdown\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/virtualNetworks/Dtlzhoxing-test\"}],\"validationLevel\":\"Template\"}}]}", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/simple_deploy\",\"name\":\"simple_deploy\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"5572566982511788950\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2021-01-19T06:41:28.5466449Z\",\"duration\":\"PT6.7539767S\",\"correlationId\":\"dd392d35-d729-45b7-a6ad-5ce7573bdb02\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{\"newNSG\":{\"type\":\"Object\",\"value\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d42c7b9d-a6dd-4119-ab27-173a3f606c58\",\"securityRules\":[],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"a2027f19-4096-4bd3-8e6d-ac77b3996ead\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/test_deploy\",\"name\":\"test_deploy\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"15642643252953848480\",\"parameters\":{\"groupLocation\":{\"type\":\"String\",\"value\":\"westus\"},\"groupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"appId\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"appSecret\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"botId\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"botSku\":{\"type\":\"String\",\"value\":\"westus\"},\"newAppServicePlanName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"newAppServicePlanSku\":{\"type\":\"Object\",\"value\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}},\"newAppServicePlanLocation\":{\"type\":\"String\",\"value\":\"\"},\"newWebAppName\":{\"type\":\"String\",\"value\":\"\"},\"slackVerificationToken\":{\"type\":\"String\",\"value\":\"\"},\"slackBotToken\":{\"type\":\"String\",\"value\":\"\"},\"slackClientSigningSecret\":{\"type\":\"String\",\"value\":\"\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2021-01-19T02:08:26.7466325Z\",\"duration\":\"PT6.6188544S\",\"correlationId\":\"d0b1dbcb-ba26-4317-b6f8-c07c936e4a78\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"resourceGroups\",\"locations\":[\"westus\"]},{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test\",\"resourceType\":\"Microsoft.Resources/resourceGroups\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageDeployment\"}],\"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\":[{\"message\":\"No HTTP resource was found that matches the request URI 'http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Resources/resourceGroups/zhoxing-test?api-version=2018-05-01'.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/simple-template\",\"name\":\"simple-template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"6178499644389956004\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"name\":{\"type\":\"String\",\"value\":\"azure-cli-deploy-test-nsg1\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2021-01-18T09:44:40.6671482Z\",\"duration\":\"PT5.7297721S\",\"correlationId\":\"d2adafde-03cb-4387-8189-52ab1954ac21\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{\"newNSG\":{\"type\":\"Object\",\"value\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"0a2a1272-9dfd-476f-98d9-5fc56428ac2b\",\"securityRules\":[],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"a6fd36f8-48be-4be7-a0ef-260620061faf\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/japaneast-template\",\"name\":\"japaneast-template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"66330334233569263\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-12-28T02:35:11.0210177Z\",\"duration\":\"PT3.858351S\",\"correlationId\":\"6661594c-3428-4661-b24e-ba1445485d77\",\"providers\":[{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"scheduledQueryRules\",\"locations\":[\"japaneast\"]}]}],\"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\":\"LinkedAuthorizationFailed\",\"message\":\"The client has permission to perform action 'microsoft.insights/actiongroups/read' on scope '/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Insights/scheduledQueryRules/armtemplate-alert-japanese-utf8', however the linked subscription '00000000-0000-0000-00000000' was not found. \"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20201209143840\",\"name\":\"Microsoft.StorageAccount-20201209143840\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/largefiletest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\",\"provisioningHash\":\"Default\"},\"properties\":{\"templateHash\":\"8884837994967140257\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"largefiletest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"minimumTlsVersion\":{\"type\":\"String\",\"value\":\"TLS1_2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true},\"allowBlobPublicAccess\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-12-09T06:40:02.7787226Z\",\"duration\":\"PT35.334902S\",\"correlationId\":\"76aebba0-555a-4e2a-af9f-e6fb74f8b50b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/largefiletest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20201209142141\",\"name\":\"Microsoft.StorageAccount-20201209142141\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/bigfiletest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\",\"provisioningHash\":\"Default\"},\"properties\":{\"templateHash\":\"8884837994967140257\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"bigfiletest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"minimumTlsVersion\":{\"type\":\"String\",\"value\":\"TLS1_2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true},\"allowBlobPublicAccess\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-12-09T06:23:20.6640647Z\",\"duration\":\"PT1M4.8999807S\",\"correlationId\":\"83c1ba4c-79b5-4431-859d-b1b084d5e717\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/bigfiletest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20201207153508\",\"name\":\"Microsoft.StorageAccount-20201207153508\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\",\"marketplaceItemId\":\"Microsoft.StorageAccount\",\"provisioningHash\":\"Default\"},\"properties\":{\"templateHash\":\"16676323329717024192\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxing\"},\"accountType\":{\"type\":\"String\",\"value\":\"Standard_RAGRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"accessTier\":{\"type\":\"String\",\"value\":\"Hot\"},\"minimumTlsVersion\":{\"type\":\"String\",\"value\":\"TLS1_2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true},\"allowBlobPublicAccess\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-12-07T07:36:19.2631223Z\",\"duration\":\"PT42.4706589S\",\"correlationId\":\"e2ea5a7b-b1e0-4d39-a41c-28fb3e526aa8\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-19a843bc\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-19a843bc\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1769012333693356871\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-11-20T06:03:42.7642531Z\",\"duration\":\"PT4.4980342S\",\"correlationId\":\"67f9dcd4-d3ae-4810-a19b-71c9b86e0662\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - aiqkmwurjsg3x5k\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/pid-bd911d2b-cf92-472f-aeee-7d1123b36b98\",\"name\":\"pid-bd911d2b-cf92-472f-aeee-7d1123b36b98\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1785727386360713170\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-11-20T05:53:26.0899211Z\",\"duration\":\"PT0.2237105S\",\"correlationId\":\"ed0b4d69-d990-4aa4-a4cf-c02de42c61b5\",\"providers\":[],\"dependencies\":[],\"outputResources\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/mainTemplate.anon\",\"name\":\"mainTemplate.anon\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"10732264190512868704\",\"parameters\":{\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"resourceDeploymentRegion\":{\"type\":\"String\",\"value\":\"eastus\"},\"notebookVMSize\":{\"type\":\"String\",\"value\":\"STANDARD_D3_V2\"},\"headClusterVMSize\":{\"type\":\"String\",\"value\":\"STANDARD_NC6\"},\"maxHeadNodes\":{\"type\":\"Int\",\"value\":2},\"workerClusterVMSize\":{\"type\":\"String\",\"value\":\"STANDARD_D2_V2\"},\"maxWorkerNodes\":{\"type\":\"Int\",\"value\":4},\"timeValueForRandomSuffix\":{\"type\":\"String\",\"value\":\"20201120T055316Z\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-11-20T06:04:53.1950966Z\",\"duration\":\"PT11M35.6598321S\",\"correlationId\":\"ed0b4d69-d990-4aa4-a4cf-c02de42c61b5\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]},{\"resourceType\":\"deploymentScripts\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.ContainerRegistry\",\"resourceTypes\":[{\"resourceType\":\"registries\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"eastus\"]},{\"resourceType\":\"virtualNetworks\",\"locations\":[\"eastus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.KeyVault\",\"resourceTypes\":[{\"resourceType\":\"vaults\",\"locations\":[\"eastus\"]},{\"resourceType\":\"vaults/secrets\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.MachineLearningServices\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"eastus\"]},{\"resourceType\":\"workspaces/computes\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Maps\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"global\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"eastus\"]},{\"resourceType\":\"sites\",\"locations\":[\"eastus\"]},{\"resourceType\":\"sites/config\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.ManagedIdentity\",\"resourceTypes\":[{\"resourceType\":\"userAssignedIdentities\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Authorization\",\"resourceTypes\":[{\"resourceType\":\"roleAssignments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/nsgqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Network/networkSecurityGroups\",\"resourceName\":\"nsgqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"vnetqkmwurjsg3x5k\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"vnetqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/nsgqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Network/networkSecurityGroups\",\"resourceName\":\"nsgqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k/subnets/default\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"vnetqkmwurjsg3x5k/default\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\",\"apiVersion\":\"2018-02-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/aiqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"aiqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test/computes/ciqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces/computes\",\"resourceName\":\"zhoxing-test/ciqkmwurjsg3x5k\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k/subnets/default\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"vnetqkmwurjsg3x5k/default\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test/computes/head-gpu\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces/computes\",\"resourceName\":\"zhoxing-test/head-gpu\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/vnetqkmwurjsg3x5k/subnets/default\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"vnetqkmwurjsg3x5k/default\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test/computes/worker-cpu\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces/computes\",\"resourceName\":\"zhoxing-test/worker-cpu\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/appSPqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"appSPqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2020-02-01-preview\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/AzureMapPrimaryKey\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/AzureMapPrimaryKey\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-04-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/STORAGE-ACCOUNT-CONNECTION-STRING\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/STORAGE-ACCOUNT-CONNECTION-STRING\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/APP-KEY\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/APP-KEY\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.KeyVault/vaults\",\"resourceName\":\"kvqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2020-02-01-preview\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/MAP-KEY\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/MAP-KEY\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/idqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"resourceName\":\"idqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/idqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"resourceName\":\"idqkmwurjsg3x5k\",\"apiVersion\":\"2018-11-30\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Authorization/roleAssignments/5f435e57-57c8-5be7-9653-f17aa95a9897\",\"resourceType\":\"Microsoft.Authorization/roleAssignments\",\"resourceName\":\"5f435e57-57c8-5be7-9653-f17aa95a9897\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\",\"apiVersion\":\"2018-02-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Authorization/roleAssignments/17436b13-0e9f-52cd-93d3-c520957d4b44\",\"resourceType\":\"Microsoft.Authorization/roleAssignments\",\"resourceName\":\"17436b13-0e9f-52cd-93d3-c520957d4b44\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Maps/accounts/azMapqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Maps/accounts\",\"resourceName\":\"azMapqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/APP-KEY\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/APP-KEY\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/MAP-KEY\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/MAP-KEY\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/kvqkmwurjsg3x5k/secrets/STORAGE-ACCOUNT-CONNECTION-STRING\",\"resourceType\":\"Microsoft.KeyVault/vaults/secrets\",\"resourceName\":\"kvqkmwurjsg3x5k/STORAGE-ACCOUNT-CONNECTION-STRING\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/config\",\"resourceName\":\"appSiteqkmwurjsg3x5k/appsettings\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/idqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"resourceName\":\"idqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Authorization/roleAssignments/5f435e57-57c8-5be7-9653-f17aa95a9897\",\"resourceType\":\"Microsoft.Authorization/roleAssignments\",\"resourceName\":\"5f435e57-57c8-5be7-9653-f17aa95a9897\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.MachineLearningServices/workspaces/zhoxing-test/computes/ciqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.MachineLearningServices/workspaces/computes\",\"resourceName\":\"zhoxing-test/ciqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-04-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deploymentScripts/retriveSimulatorCode\",\"resourceType\":\"Microsoft.Resources/deploymentScripts\",\"resourceName\":\"retriveSimulatorCode\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/idqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"resourceName\":\"idqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Authorization/roleAssignments/5f435e57-57c8-5be7-9653-f17aa95a9897\",\"resourceType\":\"Microsoft.Authorization/roleAssignments\",\"resourceName\":\"5f435e57-57c8-5be7-9653-f17aa95a9897\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/appSiteqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"appSiteqkmwurjsg3x5k\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/saqkmwurjsg3x5k\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"saqkmwurjsg3x5k\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-04-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deploymentScripts/configureWebApp\",\"resourceType\":\"Microsoft.Resources/deploymentScripts\",\"resourceName\":\"configureWebApp\"}],\"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\":\"DeploymentScriptDownloadFailure\",\"message\":\"The deployment script execution failed because the primary or supporting scripts could not be downloaded successfully due to multiple errors. First error:\\r\\nMicrosoft.PowerShell.Commands.HttpResponseException: Response status code does not indicate success: 403 (Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.).\\n at System.Management.Automation.MshCommandRuntime.ThrowTerminatingError(ErrorRecord errorRecord)\\r\\nat Start-SystemDeploymentScriptDownloadFile, /mnt/azscripts/azscriptinput/DeploymentScript.ps1: line 69\\r\\nat , /mnt/azscripts/azscriptinput/DeploymentScript.ps1: line 170. Please refer to https://aka.ms/DeploymentScriptsTroubleshoot for more deployment script information.\"},{\"code\":\"DeploymentScriptError\",\"message\":\"The provided script failed with the following error:\\r\\n[Error] Signature verification failed for whatif-webapp-code.zip. Please refer to https://aka.ms/DeploymentScriptsTroubleshoot for more deployment script information.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zx\",\"name\":\"zx\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"10662465836138684748\",\"parameters\":{\"function-app-name\":{\"type\":\"String\",\"value\":\"orderProcessing\"},\"sku\":{\"type\":\"String\",\"value\":\"S3\"},\"storageAccountType\":{\"type\":\"String\",\"value\":\"Standard_LRS\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"},\"deploymentEnvironment\":{\"type\":\"String\",\"value\":\"CI\"},\"applicationSettings\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"provisioningState\":\"Canceled\",\"timestamp\":\"2020-11-03T08:08:27.8712963Z\",\"duration\":\"PT13.251839S\",\"correlationId\":\"949af8ef-8c1f-4794-af5a-71458ce36df8\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"southcentralus\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/config\",\"locations\":[null]},{\"resourceType\":\"sites/slots\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/slots/config\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/appInsights-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"appInsights-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/config\",\"resourceName\":\"orderProcessing/appsettings\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/slots/config\",\"resourceName\":\"orderProcessing/stage/appsettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/azuredeploy\",\"name\":\"azuredeploy\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"10662465836138684748\",\"parameters\":{\"function-app-name\":{\"type\":\"String\",\"value\":\"orderProcessing\"},\"sku\":{\"type\":\"String\",\"value\":\"S3\"},\"storageAccountType\":{\"type\":\"String\",\"value\":\"Standard_LRS\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"},\"deploymentEnvironment\":{\"type\":\"String\",\"value\":\"CI\"},\"applicationSettings\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-11-03T08:06:38.3403154Z\",\"duration\":\"PT47.9793905S\",\"correlationId\":\"f1858719-e078-41ff-98b8-3113fca4a2fe\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"southcentralus\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/config\",\"locations\":[null]},{\"resourceType\":\"sites/slots\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/slots/config\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/appInsights-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"appInsights-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/config\",\"resourceName\":\"orderProcessing/appsettings\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/slots/config\",\"resourceName\":\"orderProcessing/stage/appsettings\"}],\"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\":[{\"message\":\"Website with given name orderProcessing already exists.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/validate_error_template\",\"name\":\"validate_error_template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"479398563487745336\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-10-26T02:36:22.208154Z\",\"duration\":\"PT35.462768S\",\"correlationId\":\"ffd8d210-0a76-404d-96a7-8a9e5c24c14b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/euwapiptdevst02\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/simple_deploy_multiline\",\"name\":\"simple_deploy_multiline\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"2667423895514669180\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-10-14T09:05:20.6753533Z\",\"duration\":\"PT9.0409803S\",\"correlationId\":\"74eda485-bbc0-402f-a8c1-14aa1a722cbd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{\"empty\":{\"type\":\"String\",\"value\":\"\"},\"newNSG\":{\"type\":\"Object\",\"value\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"11cfe367-bf96-4aba-b083-8cb3fca534c4\",\"securityRules\":[],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Allow outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"45abcd1a-f2d4-481b-aad3-039ddef356fb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Succeeded\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zhoxing-test\",\"name\":\"zhoxing-test\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"5485076355534486564\",\"parameters\":{\"projectName\":{\"type\":\"String\",\"value\":\"get.it\"},\"getitDatabaseGroupName\":{\"type\":\"String\",\"value\":\"RG-GETIT-DB\"},\"getitDatabaseDeploymentName\":{\"type\":\"String\",\"value\":\"DEPLOY-GETIT-DB\"},\"getitNetworkGroupName\":{\"type\":\"String\",\"value\":\"RG-GETIT-NETWORK\"},\"getitNetworkDeploymentName\":{\"type\":\"String\",\"value\":\"DEPLOY-GETIT-NETWORK\"},\"apimName\":{\"type\":\"String\",\"value\":\"apim-zdf-getit\"},\"apimAdminEmail\":{\"type\":\"String\",\"value\":\"sebastian.gaertner@accso.de\"},\"apimOrgName\":{\"type\":\"String\",\"value\":\"ZDF\"},\"apimProductServiceApiName\":{\"type\":\"String\",\"value\":\"product-api\"},\"apimEditionServiceApiName\":{\"type\":\"String\",\"value\":\"edition-api\"},\"apimResourceServiceApiName\":{\"type\":\"String\",\"value\":\"resource-api\"},\"apimPublicationEventServiceApiName\":{\"type\":\"String\",\"value\":\"publicationevent-api\"},\"apimGroupServiceApiName\":{\"type\":\"String\",\"value\":\"group-api\"},\"apimGraphQLApiName\":{\"type\":\"String\",\"value\":\"graphql-api\"},\"apimProductionApiName\":{\"type\":\"String\",\"value\":\"production-api\"},\"appServerFarmName\":{\"type\":\"String\",\"value\":\"plan-zdf-getit\"},\"logAnalyticsWorkspaceName\":{\"type\":\"String\",\"value\":\"log-zdf-getit-api2\"},\"productServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-product\"},\"productServiceRuntime\":{\"type\":\"String\",\"value\":\"java\"},\"editionServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-edition\"},\"editionServiceRuntime\":{\"type\":\"String\",\"value\":\"dotnet\"},\"resourceServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-resource\"},\"resourceServiceRuntime\":{\"type\":\"String\",\"value\":\"dotnet\"},\"publicationEventServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-publicationevent\"},\"publicationEventServiceRuntime\":{\"type\":\"String\",\"value\":\"dotnet\"},\"groupServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-group\"},\"groupServiceRuntime\":{\"type\":\"String\",\"value\":\"dotnet\"},\"graphQLServiceName\":{\"type\":\"String\",\"value\":\"func-zdf-getit-graphql\"},\"graphQLServiceRuntime\":{\"type\":\"String\",\"value\":\"node\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-08-14T02:33:39.9455691Z\",\"duration\":\"PT12.8454385S\",\"correlationId\":\"835c2bee-c9e0-4662-9152-015fc9a6e646\",\"providers\":[{\"namespace\":\"Microsoft.ApiManagement\",\"resourceTypes\":[{\"resourceType\":\"service\",\"locations\":[\"westus\"]},{\"resourceType\":\"service/tags\",\"locations\":[null]},{\"resourceType\":\"service/apis\",\"locations\":[null]},{\"resourceType\":\"service/apis/tags\",\"locations\":[null]},{\"resourceType\":\"service/subscriptions\",\"locations\":[null]},{\"resourceType\":\"service/products\",\"locations\":[null]},{\"resourceType\":\"service/products/apis\",\"locations\":[null]},{\"resourceType\":\"service/products/policies\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/networkConfig\",\"locations\":[\"westus\"]}]},{\"namespace\":\"Microsoft.OperationalInsights\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"westeurope\"]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/product\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/product\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/edition\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/edition\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/resource\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/resource\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/publicationEvent\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/publicationEvent\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/group\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/group\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/graphql\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/graphql\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/productionPermit\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/productionPermit\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/productionProposal\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/productionProposal\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/product\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/product\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api/tags/product\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/product-api/product\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/edition\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/edition\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api/tags/edition\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/edition-api/edition\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/resource\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/resource\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api/tags/resource\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/resource-api/resource\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/publicationEvent\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/publicationEvent\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api/tags/publicationEvent\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/publicationevent-api/publicationEvent\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/group\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/group\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api/tags/group\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/group-api/group\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/graphql\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/graphql\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api/tags/graphql\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/graphql-api/graphql\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/productionPermit\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/productionPermit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api/tags/productionPermit\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/production-api/productionPermit\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/tags/productionProposal\",\"resourceType\":\"Microsoft.ApiManagement/service/tags\",\"resourceName\":\"apim-zdf-getit/productionProposal\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api/tags/productionProposal\",\"resourceType\":\"Microsoft.ApiManagement/service/apis/tags\",\"resourceName\":\"apim-zdf-getit/production-api/productionProposal\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/planit-import\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/planit-import\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/doit-import\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/doit-import\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/product-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/edition-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/resource-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/publicationevent-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/group-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/graphql-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/starter/production-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/starter\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/starter/policies/policy\",\"resourceType\":\"Microsoft.ApiManagement/service/products/policies\",\"resourceName\":\"apim-zdf-getit/starter/policy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/product-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/edition-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/resource-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/publicationevent-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/group-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/graphql-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/standard/production-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/standard\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/standard/policies/policy\",\"resourceType\":\"Microsoft.ApiManagement/service/products/policies\",\"resourceName\":\"apim-zdf-getit/standard/policy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/product-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/edition-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/resource-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/publicationevent-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/group-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/graphql-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/graphql-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/graphql-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium\",\"resourceType\":\"Microsoft.ApiManagement/service/products\",\"resourceName\":\"apim-zdf-getit/premium\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/products/premium/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/products/apis\",\"resourceName\":\"apim-zdf-getit/premium/production-api\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-product-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-product-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-product-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-product-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-product\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-product\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-product\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-product\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-product/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-product/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-edition-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-edition-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-edition-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-edition-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-edition\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-edition\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-edition\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-edition\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-edition/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-edition/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-resource-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-resource-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-resource-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-resource-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-resource\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-resource\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-resource\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-resource\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-resource/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-resource/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-publicationevent-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-publicationevent-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-publicationevent-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-publicationevent-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-publicationevent\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-publicationevent\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-publicationevent\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-publicationevent\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-publicationevent/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-publicationevent/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-group-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-group-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-group-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-group-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\",\"apiVersion\":\"2019-01-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/product-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/product-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/edition-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/edition-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/resource-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/resource-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/publicationevent-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/publicationevent-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/group-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/group-api\",\"apiVersion\":\"2019-12-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/apis/production-api\",\"resourceType\":\"Microsoft.ApiManagement/service/apis\",\"resourceName\":\"apim-zdf-getit/production-api\",\"apiVersion\":\"2019-12-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-group\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-group\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-group\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-group\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-group/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-group/virtualNetwork\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/func-zdf-getit-graphql-application-insights\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"func-zdf-getit-graphql-application-insights\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/plan-zdf-getit\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"plan-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit\",\"resourceType\":\"Microsoft.ApiManagement/service\",\"resourceName\":\"apim-zdf-getit\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ApiManagement/service/apim-zdf-getit/subscriptions/getit-functions\",\"resourceType\":\"Microsoft.ApiManagement/service/subscriptions\",\"resourceName\":\"apim-zdf-getit/getit-functions\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/getitxxx6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"getitxxx6472qnxl3vv5o\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/func-zdf-getit-graphql-application-insights\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"func-zdf-getit-graphql-application-insights\",\"apiVersion\":\"2018-05-01-preview\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-DB/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-DB\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-DB\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-graphql\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-graphql\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-graphql\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"func-zdf-getit-graphql\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-GETIT-NETWORK/providers/Microsoft.Resources/deployments/DEPLOY-GETIT-NETWORK\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DEPLOY-GETIT-NETWORK\",\"apiVersion\":\"2018-05-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/func-zdf-getit-graphql/networkConfig/virtualNetwork\",\"resourceType\":\"Microsoft.Web/sites/networkConfig\",\"resourceName\":\"func-zdf-getit-graphql/virtualNetwork\"}],\"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\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ApiManagement/service/apim-zdf-getit' under resource group 'zhoxing-test' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"},{\"code\":\"ServiceAlreadyExists\",\"message\":\"Api service already exists: apim-zdf-getit\"},{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'RG-GETIT-DB' could not be found.\"},{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'RG-GETIT-NETWORK' could not be found.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-b2c970b3\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-b2c970b3\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"13728839536848772392\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:58.6717661Z\",\"duration\":\"PT6.2505024S\",\"correlationId\":\"15282324-0af8-462b-a510-44af180a9fca\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-group-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-a7cd0d23\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-a7cd0d23\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"11008178750715012999\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:56.3163568Z\",\"duration\":\"PT4.6419329S\",\"correlationId\":\"2982921b-9678-4d4f-a56e-1abf794921b9\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-graphql-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-88d7d7bd\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-88d7d7bd\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16733204837828727382\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:57.9818234Z\",\"duration\":\"PT6.3610864S\",\"correlationId\":\"45c90228-f8b9-4db0-8c66-76a037085704\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-edition-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-4b72882f\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-4b72882f\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"851689626023111966\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:55.1755059Z\",\"duration\":\"PT3.6922649S\",\"correlationId\":\"e0678ab0-3b3b-4c3e-bcb4-4871660ba044\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-resource-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-3f5366ed\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-3f5366ed\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1561114309446397737\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:55.8251522Z\",\"duration\":\"PT4.9057511S\",\"correlationId\":\"400b209e-8de2-4536-bccd-c070ecd048ec\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-publicationevent-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-4e05da17\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-4e05da17\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"8029190641605507225\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-14T02:26:52.6382412Z\",\"duration\":\"PT2.1789515S\",\"correlationId\":\"bd8ed02e-2208-4dcd-a584-94965af3e707\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - func-zdf-getit-product-application-insights\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zhoxing-test2\",\"name\":\"zhoxing-test2\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.StorageCache/caches/zhoxing-test2\",\"marketplaceItemId\":\"Microsoft.StorageCache\"},\"properties\":{\"templateHash\":\"6137140797134419149\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"eastus\"},\"subnetName\":{\"type\":\"String\",\"value\":\"default\"},\"virtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxing\"},\"storageCacheName\":{\"type\":\"String\",\"value\":\"zhoxing-test2\"},\"cacheSizeGB\":{\"type\":\"Int\",\"value\":3072},\"storageCacheSkuName\":{\"type\":\"String\",\"value\":\"Standard_2G\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Failed\",\"timestamp\":\"2020-08-07T09:42:02.8806214Z\",\"duration\":\"PT11M2.8851179S\",\"correlationId\":\"fbd071b6-cacb-4761-85ce-fb85ddf833ab\",\"providers\":[{\"namespace\":\"Microsoft.StorageCache\",\"resourceTypes\":[{\"resourceType\":\"caches\",\"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\":\"AscInternalError\",\"message\":\"Error encountered deploying the cache.\"}]},\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.VirtualNetwork-20200731143851\",\"name\":\"Microsoft.VirtualNetwork-20200731143851\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxing\",\"marketplaceItemId\":\"Microsoft.VirtualNetwork\"},\"properties\":{\"templateHash\":\"13381686255721391901\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"eastus\"},\"virtualNetworkName\":{\"type\":\"String\",\"value\":\"zhoxing\"},\"resourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"addressSpaces\":{\"type\":\"Array\",\"value\":[\"10.12.0.0/16\"]},\"ipv6Enabled\":{\"type\":\"Bool\",\"value\":false},\"subnetCount\":{\"type\":\"Int\",\"value\":1},\"subnet0_name\":{\"type\":\"String\",\"value\":\"default\"},\"subnet0_addressRange\":{\"type\":\"String\",\"value\":\"10.12.0.0/24\"},\"ddosProtectionPlanEnabled\":{\"type\":\"Bool\",\"value\":false},\"firewallEnabled\":{\"type\":\"Bool\",\"value\":false},\"bastionEnabled\":{\"type\":\"Bool\",\"value\":false}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-31T06:39:26.0818169Z\",\"duration\":\"PT13.5092281S\",\"correlationId\":\"9024bd3f-0d65-49a7-b9e9-f76cceea13ef\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/VirtualNetworks/zhoxing\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zhoxing\",\"name\":\"zhoxing\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"9913373836689765749\",\"parameters\":{\"groupLocation\":{\"type\":\"String\",\"value\":\"westus\"},\"groupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"appId\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"appSecret\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"botId\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"botSku\":{\"type\":\"String\",\"value\":\"westus\"},\"newAppServicePlanName\":{\"type\":\"String\",\"value\":\"***\"},\"newAppServicePlanSku\":{\"type\":\"Object\",\"value\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}},\"newAppServicePlanLocation\":{\"type\":\"String\",\"value\":\"\"},\"newWebAppName\":{\"type\":\"String\",\"value\":\"\"},\"slackVerificationToken\":{\"type\":\"String\",\"value\":\"\"},\"slackBotToken\":{\"type\":\"String\",\"value\":\"\"},\"slackClientSigningSecret\":{\"type\":\"String\",\"value\":\"\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-07-24T02:09:57.2934537Z\",\"duration\":\"PT2.6251093S\",\"correlationId\":\"63a2a95c-8cc3-4b26-b0d1-05c19704468a\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"resourceGroups\",\"locations\":[\"westus\"]},{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test\",\"resourceType\":\"Microsoft.Resources/resourceGroups\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageDeployment\"}],\"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\":[{\"message\":\"No HTTP resource was found that matches the request URI 'http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Resources/resourceGroups/zhoxing-test?api-version=2018-05-01'.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/redis.cache_2\",\"name\":\"redis.cache_2\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing3\",\"marketplaceItemId\":\"Microsoft.Cache\"},\"properties\":{\"templateHash\":\"16475047503873081288\",\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-17T02:30:18.0728672Z\",\"duration\":\"PT18M29.2379003S\",\"correlationId\":\"27a8f757-b8ac-440f-8126-c3c867edf7c5\",\"providers\":[{\"namespace\":\"Microsoft.Cache\",\"resourceTypes\":[{\"resourceType\":\"Redis\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/redis.cache_1\",\"name\":\"redis.cache_1\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing2\",\"marketplaceItemId\":\"Microsoft.Cache\"},\"properties\":{\"templateHash\":\"576582858980762143\",\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-17T02:39:22.6586917Z\",\"duration\":\"PT28M3.7821048S\",\"correlationId\":\"02c9224d-e521-4797-8aef-da551e14948d\",\"providers\":[{\"namespace\":\"Microsoft.Cache\",\"resourceTypes\":[{\"resourceType\":\"Redis\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/redis.cache\",\"name\":\"redis.cache\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.Cache\"},\"properties\":{\"templateHash\":\"6801733663408905830\",\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-17T02:23:16.2959839Z\",\"duration\":\"PT18M21.6882908S\",\"correlationId\":\"4d616a52-417e-4b20-832b-a427dc4fbae7\",\"providers\":[{\"namespace\":\"Microsoft.Cache\",\"resourceTypes\":[{\"resourceType\":\"Redis\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Cache/Redis/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/NoMarketplace-20200713174155\",\"name\":\"NoMarketplace-20200713174155\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/zhoxingtest.com\",\"marketplaceItemId\":\"\"},\"properties\":{\"templateHash\":\"10419476445083869131\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxingtest.com\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-13T09:44:06.9606591Z\",\"duration\":\"PT47.6452397S\",\"correlationId\":\"fa90b1a8-96ef-4f44-aba2-13ad7a03d84d\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/zhoxingtest.com\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/NoMarketplace-20200713173655\",\"name\":\"NoMarketplace-20200713173655\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/zhoxingtest.com\",\"marketplaceItemId\":\"\"},\"properties\":{\"templateHash\":\"10419476445083869131\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxingtest.com\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-13T09:38:18.4729953Z\",\"duration\":\"PT50.8715S\",\"correlationId\":\"565d3a98-d796-41ca-856e-5640767142ff\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/zhoxingtest.com\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.ApplianceDefinition\",\"name\":\"Microsoft.ApplianceDefinition\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Solutions/applicationDefinitions/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.ApplianceDefinition\"},\"properties\":{\"templateHash\":\"7328759817283875413\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"managementPolicy\":{\"type\":\"Object\",\"value\":{\"mode\":\"Managed\"}},\"lockLevel\":{\"type\":\"String\",\"value\":\"none\"},\"authorizations\":{\"type\":\"Array\",\"value\":[]},\"description\":{\"type\":\"String\",\"value\":\"\"},\"displayName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"packageFileUri\":{\"type\":\"String\",\"value\":\"https://containername.blob.core.windows.net/package.zip\"},\"lockingPolicy\":{\"type\":\"Object\",\"value\":{\"allowedActions\":[]}},\"notificationPolicy\":{\"type\":\"Object\",\"value\":{\"notificationEndpoints\":[]}},\"deploymentPolicy\":{\"type\":\"Object\",\"value\":{\"deploymentMode\":\"Complete\"}}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Failed\",\"timestamp\":\"2020-07-13T08:59:53.7509226Z\",\"duration\":\"PT10.0740069S\",\"correlationId\":\"e0f2cd1b-6183-4bae-9be6-a3b51d824254\",\"providers\":[{\"namespace\":\"Microsoft.Solutions\",\"resourceTypes\":[{\"resourceType\":\"applicationDefinitions\",\"locations\":[\"westus\"]}]}],\"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\":\"DownloadItemFromBlobFailed\",\"message\":\"Download of the item from blob at 'https://containername.blob.core.windows.net/package.zip' failed due to a failed connection.\"}]},\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200617163543\",\"name\":\"Microsoft.StorageAccount-20200617163543\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingpage\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingpage\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-17T08:38:17.9332656Z\",\"duration\":\"PT35.3608729S\",\"correlationId\":\"a6010c85-0ebf-4007-8e00-0a0a553a0cb9\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingpage\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200605161418\",\"name\":\"Microsoft.StorageAccount-20200605161418\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtestv2\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtestv2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-05T08:15:19.9706428Z\",\"duration\":\"PT29.9345928S\",\"correlationId\":\"183bd12b-7ce3-47af-91da-f806eddcaa30\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtestv2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200605161221\",\"name\":\"Microsoft.StorageAccount-20200605161221\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest3\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest3\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-05T08:13:27.2729317Z\",\"duration\":\"PT33.6979316S\",\"correlationId\":\"66cd9283-18a3-42e1-beea-db534516fd09\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/zhoxing-test-6511134\",\"name\":\"zhoxing-test-6511134\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Devices/IotHubs/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.IotHub\",\"provisioningHash\":\"zhoxing-test-6511134\"},\"properties\":{\"templateHash\":\"14500782064966916276\",\"parameters\":{\"hubname\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"eastus\"},\"sku_name\":{\"type\":\"String\",\"value\":\"S1\"},\"sku_units\":{\"type\":\"String\",\"value\":\"1\"},\"d2c_partitions\":{\"type\":\"String\",\"value\":\"4\"},\"features\":{\"type\":\"String\",\"value\":\"None\"},\"tags\":{\"type\":\"Object\",\"value\":{}},\"cloudEnvironment\":{\"type\":\"String\",\"value\":\"public\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-05T03:04:26.3289398Z\",\"duration\":\"PT2M45.3270964S\",\"correlationId\":\"23672a2f-a5a0-4935-9e4b-28b954b309e1\",\"providers\":[{\"namespace\":\"Microsoft.Devices\",\"resourceTypes\":[{\"resourceType\":\"IotHubs\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.OperationalInsights\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"eastus\"]}]},{\"namespace\":\"Microsoft.Security\",\"resourceTypes\":[{\"resourceType\":\"IoTSecuritySolutions\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Devices/IotHubs/zhoxing-test\",\"resourceType\":\"Microsoft.Devices/IotHubs\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.OperationalInsights/workspaces\",\"resourceName\":\"zhoxing-test\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Devices/IotHubs/zhoxing-test\",\"resourceType\":\"Microsoft.Devices/IotHubs\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.OperationalInsights/workspaces\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Security/IoTSecuritySolutions/zhoxing-test\",\"resourceType\":\"Microsoft.Security/IoTSecuritySolutions\",\"resourceName\":\"zhoxing-test\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Devices/IotHubs/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Security/IoTSecuritySolutions/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200604182734\",\"name\":\"Microsoft.StorageAccount-20200604182734\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest3\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest3\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"Storage\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-04T10:28:34.861346Z\",\"duration\":\"PT33.442841S\",\"correlationId\":\"d9cdc3a8-6629-4779-a6f9-a572107da649\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200604182518\",\"name\":\"Microsoft.StorageAccount-20200604182518\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"FileStorage\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-04T10:26:20.9378925Z\",\"duration\":\"PT30.4986271S\",\"correlationId\":\"1bc5999e-8ad1-40eb-9ce9-9bd7f41f2469\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200604174616\",\"name\":\"Microsoft.StorageAccount-20200604174616\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"BlockBlobStorage\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-04T09:47:54.9354542Z\",\"duration\":\"PT31.7385616S\",\"correlationId\":\"b64730bd-3441-40a1-b0c8-8a2a28b2373b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200604174207\",\"name\":\"Microsoft.StorageAccount-20200604174207\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-06-04T09:44:02.7554567Z\",\"duration\":\"PT36.4150378S\",\"correlationId\":\"2daa0bea-baba-47fd-911d-3f032fcb4f12\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/VirtualNetworklink-3d99afdb-b016-4341-b822-35863300404c\",\"name\":\"VirtualNetworklink-3d99afdb-b016-4341-b822-35863300404c\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1961003837028567226\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:42:23.6683592Z\",\"duration\":\"PT43.4583406S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateDnsZones/virtualNetworkLinks\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net/virtualNetworkLinks/s67i3pgzda3qi\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/VirtualNetworkLink-20200528103815\",\"name\":\"VirtualNetworkLink-20200528103815\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"17624723031993013323\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:42:25.2537755Z\",\"duration\":\"PT48.5949876S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net/virtualNetworkLinks/s67i3pgzda3qi\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/DnsZoneGroup-20200528103815\",\"name\":\"DnsZoneGroup-20200528103815\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"17179788593214746780\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:41:44.8948026Z\",\"duration\":\"PT8.4190742S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateEndpoints/privateDnsZoneGroups\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3/privateDnsZoneGroups/default\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDnsZone-3d99afdb-b016-4341-b822-35863300404b\",\"name\":\"PrivateDnsZone-3d99afdb-b016-4341-b822-35863300404b\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"2250866243485167996\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:41:28.9956706Z\",\"duration\":\"PT51.326253S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDns-20200528103815\",\"name\":\"PrivateDns-20200528103815\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"9908679191686152932\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:41:32.5715095Z\",\"duration\":\"PT59.4559786S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/UpdateSubnetDeployment-20200528103815\",\"name\":\"UpdateSubnetDeployment-20200528103815\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16875532642000494520\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:39:49.6423303Z\",\"duration\":\"PT9.8150316S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[null]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest/subnets/default\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.PrivateEndpoint-20200528103530\",\"name\":\"Microsoft.PrivateEndpoint-20200528103530\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\",\"marketplaceItemId\":\"\"},\"properties\":{\"templateHash\":\"12801401672929746764\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"privateEndpointName\":{\"type\":\"String\",\"value\":\"pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"},\"privateLinkResource\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\"},\"targetSubResource\":{\"type\":\"Array\",\"value\":[\"table\"]},\"requestMessage\":{\"type\":\"String\",\"value\":\"\"},\"subnet\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest/subnets/default\"},\"virtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest\"},\"virtualNetworkResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subnetDeploymentName\":{\"type\":\"String\",\"value\":\"UpdateSubnetDeployment-20200528103815\"},\"privateDnsDeploymentName\":{\"type\":\"String\",\"value\":\"PrivateDns-20200528103815\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:42:30.7104493Z\",\"duration\":\"PT3M0.9325005S\",\"correlationId\":\"e54b819b-efb8-4ebd-a357-cde3cd59f8dd\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"privateEndpoints\",\"locations\":[\"centralus\"]}]},{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/UpdateSubnetDeployment-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"UpdateSubnetDeployment-20200528103815\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\",\"resourceType\":\"Microsoft.Network/privateEndpoints\",\"resourceName\":\"pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\",\"resourceType\":\"Microsoft.Network/privateEndpoints\",\"resourceName\":\"pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDns-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"PrivateDns-20200528103815\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDns-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"PrivateDns-20200528103815\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/VirtualNetworkLink-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"VirtualNetworkLink-20200528103815\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\",\"resourceType\":\"Microsoft.Network/privateEndpoints\",\"resourceName\":\"pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/PrivateDns-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"PrivateDns-20200528103815\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/DnsZoneGroup-20200528103815\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"DnsZoneGroup-20200528103815\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateDnsZones/privatelink.table.core.windows.net/virtualNetworkLinks/s67i3pgzda3qi\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/privateEndpoints/pe-eu2-iris-dev-006.nic.9d80d11c-ea9f-427e-a580-c3779dd543f3/privateDnsZoneGroups/default\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest/subnets/default\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.VirtualNetwork-20200528103154\",\"name\":\"Microsoft.VirtualNetwork-20200528103154\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.VirtualNetwork-ARM\"},\"properties\":{\"templateHash\":\"7310725565247910838\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"virtualNetworkName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"resourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"addressSpaces\":{\"type\":\"Array\",\"value\":[\"10.17.0.0/16\"]},\"ipv6Enabled\":{\"type\":\"Bool\",\"value\":false},\"subnetCount\":{\"type\":\"Int\",\"value\":1},\"subnet0_name\":{\"type\":\"String\",\"value\":\"default\"},\"subnet0_addressRange\":{\"type\":\"String\",\"value\":\"10.17.0.0/24\"},\"ddosProtectionPlanEnabled\":{\"type\":\"Bool\",\"value\":false},\"firewallEnabled\":{\"type\":\"Bool\",\"value\":false},\"bastionEnabled\":{\"type\":\"Bool\",\"value\":false}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-28T02:34:12.7114768Z\",\"duration\":\"PT21.3925748S\",\"correlationId\":\"7f24cb63-adb7-4672-8138-4dce3757aa9b\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/VirtualNetworks/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.ContainerRegistry\",\"name\":\"Microsoft.ContainerRegistry\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.ContainerRegistry/registries/zhoxingtest/webhooks/zhoxingtest\"},\"properties\":{\"templateHash\":\"8202610767534201205\",\"parameters\":{\"registryName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"webhookName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"webhookLocation\":{\"type\":\"String\",\"value\":\"westus\"},\"webhookApiVersion\":{\"type\":\"String\",\"value\":\"2019-12-01-preview\"},\"serviceUri\":{\"type\":\"SecureString\"},\"customHeaders\":{\"type\":\"SecureObject\"},\"actions\":{\"type\":\"Array\",\"value\":[\"push\"]},\"status\":{\"type\":\"String\",\"value\":\"enabled\"},\"scope\":{\"type\":\"String\",\"value\":\"\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-14T05:47:58.9717589Z\",\"duration\":\"PT17.5659974S\",\"correlationId\":\"c4fc9e92-912e-465f-8469-2342255d2335\",\"providers\":[{\"namespace\":\"Microsoft.ContainerRegistry\",\"resourceTypes\":[{\"resourceType\":\"registries/webhooks\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.ContainerRegistry/registries/zhoxingtest/webhooks/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/lumagatena.resourcescheduler-20200514132040\",\"name\":\"lumagatena.resourcescheduler-20200514132040\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test\",\"marketplaceItemId\":\"lumagatena.resourceschedulerent\"},\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/lumagatena.resourcescheduler-b0655f11-493e-40aa-b54e-9229ae04f5fc-ent/Artifacts/DefaultTemplate\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"17406019195718949633\",\"parameters\":{\"resourcePrefix\":{\"type\":\"String\",\"value\":\"zhoxing\"},\"appInsightsLocation\":{\"type\":\"String\",\"value\":\"westcentralus\"},\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"_artifactsLocation\":{\"type\":\"String\",\"value\":\"https://catalogartifact.azureedge.net/publicartifacts/lumagatena.resourcescheduler-b0655f11-493e-40aa-b54e-9229ae04f5fc-ent/Artifacts/DefaultTemplate\"},\"_artifactsLocationSasToken\":{\"type\":\"SecureString\"},\"applicationResourceName\":{\"type\":\"String\",\"value\":\"ManagedResourceScheduler\"},\"managedResourceGroupId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mrg-resourcescheduler-20200514132040\"},\"managedIdentity\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Failed\",\"timestamp\":\"2020-05-14T05:28:41.6327612Z\",\"duration\":\"PT12.101002S\",\"correlationId\":\"315b4dd9-a0ca-4dc8-a455-0a0cbc76bc9b\",\"providers\":[{\"namespace\":\"Microsoft.Solutions\",\"resourceTypes\":[{\"resourceType\":\"applications\",\"locations\":[\"westus\"]}]}],\"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\":\"ResourcePurchaseValidationFailed\",\"message\":\"User failed validation to purchase resources. Error message: '{\\\"error\\\":{\\\"code\\\":\\\"AccountSetupError\\\",\\\"message\\\":\\\"You cannot purchase reservation because required AAD tenant information is missing. Please ask your tenant admin to fill this form: https://aka.ms/orgprofile\\\"}}'\"}]},\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.LogAnalyticsOMS\",\"name\":\"Microsoft.LogAnalyticsOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test11\",\"marketplaceItemId\":\"Microsoft.LogAnalyticsOMS\"},\"properties\":{\"templateHash\":\"11463598216708868146\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test11\"},\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"sku\":{\"type\":\"String\",\"value\":\"pergb2018\"},\"tags\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-11T02:46:11.2613852Z\",\"duration\":\"PT27.5799751S\",\"correlationId\":\"ef0d9b73-6d41-4e4a-8d72-14bb23335fbe\",\"providers\":[{\"namespace\":\"Microsoft.OperationalInsights\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test11\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/mainTemplate\",\"name\":\"mainTemplate\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"3218180314351156874\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-05-06T08:12:40.0695696Z\",\"duration\":\"PT3.0700022S\",\"correlationId\":\"780ef5f1-25d3-427c-b4f8-065b75ebd193\",\"providers\":[],\"dependencies\":[],\"outputs\":{\"deploymentOutput\":{\"type\":\"Object\",\"value\":{\"name\":\"mainTemplate\",\"properties\":{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[],\"outputs\":{\"deploymentOutput\":{\"type\":\"Object\",\"value\":\"[deployment()]\"}}},\"templateHash\":\"3218180314351156874\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\"}}}},\"outputResources\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/specially-encoded-template\",\"name\":\"specially-encoded-template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1888782782781528452\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-04-30T07:03:23.7207451Z\",\"duration\":\"PT4.0436353S\",\"correlationId\":\"bfb6b403-aaf7-45fa-a24f-d6f55381b616\",\"providers\":[{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"scheduledQueryRules\",\"locations\":[\"japaneast\"]}]}],\"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\":\"LinkedAuthorizationFailed\",\"message\":\"The client has permission to perform action 'microsoft.insights/actiongroups/read' on scope '/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Insights/scheduledQueryRules/armtemplate-alert-japanese-utf8', however the linked subscription '{subscriptionId}' was not found. \"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200421145256\",\"name\":\"Microsoft.StorageAccount-20200421145256\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing2\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxing2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-21T06:54:42.0368957Z\",\"duration\":\"PT33.1713846S\",\"correlationId\":\"41acf011-d899-4a7d-afa8-cb184a71b868\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200421145114\",\"name\":\"Microsoft.StorageAccount-20200421145114\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\",\"marketplaceItemId\":\"Microsoft.StorageAccount-ARM\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-21T06:53:03.6973431Z\",\"duration\":\"PT32.8398506S\",\"correlationId\":\"e599a79d-ca38-4d53-a312-783dcd52892b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200421134632\",\"name\":\"Microsoft.StorageAccount-20200421134632\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"16380682949036680971\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"kind\":{\"type\":\"String\",\"value\":\"FileStorage\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-21T05:51:14.8318342Z\",\"duration\":\"PT34.9084997S\",\"correlationId\":\"3027cf64-8a93-4cfe-b676-0cc36f44cd62\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200420165822\",\"name\":\"Microsoft.StorageAccount-20200420165822\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"1076588640741720503\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"accountType\":{\"type\":\"String\",\"value\":\"Standard_RAGRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"accessTier\":{\"type\":\"String\",\"value\":\"Hot\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true},\"isHnsEnabled\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-20T09:02:06.2473506Z\",\"duration\":\"PT2M4.9663424S\",\"correlationId\":\"f0fc9ae7-540f-4024-9599-910ec442b728\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.AlertManagementOMS\",\"name\":\"Microsoft.AlertManagementOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AlertManagement(zhoxing-test)\",\"marketplaceItemId\":\"Microsoft.AlertManagementOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.AlertManagementOMS.1.0.21/Artifacts/CreateResources.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4518277868068772365\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"AlertManagement\"]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-20T02:46:25.1922657Z\",\"duration\":\"PT10.0635592S\",\"correlationId\":\"ff16ce44-6269-4887-8657-1339b2c0e993\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AlertManagement(zhoxing-test)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/CreateVm-Canonical.UbuntuServer-18.04-LTS-20200417160045\",\"name\":\"CreateVm-Canonical.UbuntuServer-18.04-LTS-20200417160045\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.VirtualMachine\",\"provisioningHash\":\"SolutionProvider\"},\"properties\":{\"templateHash\":\"7172804404965899907\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"networkInterfaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test801\"},\"subnetName\":{\"type\":\"String\",\"value\":\"default\"},\"virtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxing-test\"},\"virtualMachineName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"virtualMachineRG\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"osDiskType\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"virtualMachineSize\":{\"type\":\"String\",\"value\":\"Standard_D2s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagnosticsStorageAccountName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"diagnosticsStorageAccountId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-17T08:04:15.7864236Z\",\"duration\":\"PT48.1102756S\",\"correlationId\":\"01ac1c40-8120-4df9-bf04-a1e246c34fba\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]},{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test801\",\"resourceType\":\"Microsoft.Network/networkInterfaces\",\"resourceName\":\"zhoxing-test801\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\",\"resourceType\":\"Microsoft.Compute/virtualMachines\",\"resourceName\":\"zhoxing-test\"}],\"outputs\":{\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test801\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/SolutionDeployment-20200416192508\",\"name\":\"SolutionDeployment-20200416192508\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"3423151013820430908\",\"parameters\":{},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-16T17:23:55.056176Z\",\"duration\":\"PT9.5703329S\",\"correlationId\":\"ad2ceb37-60e5-4809-aea7-536c8da31de2\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"australiacentral\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(zhoxing-test2)\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200415165139\",\"name\":\"Microsoft.StorageAccount-20200415165139\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\",\"marketplaceItemId\":\"Microsoft.StorageAccount\"},\"properties\":{\"templateHash\":\"11961669741847493773\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"eastus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxing\"},\"accountType\":{\"type\":\"String\",\"value\":\"Standard_RAGRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"accessTier\":{\"type\":\"String\",\"value\":\"Hot\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-15T08:54:38.0110053Z\",\"duration\":\"PT1M43.6998278S\",\"correlationId\":\"b693853a-6a38-4b8f-87bc-f5d2f6fe889d\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.ContainersOMS\",\"name\":\"Microsoft.ContainersOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/Containers(zhoxing-workspace)\",\"marketplaceItemId\":\"Microsoft.ContainersOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.ContainersOMS.1.1.16/Artifacts/CreateResources.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4518277868068772365\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-workspace\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"Containers\"]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-11T07:47:27.1639894Z\",\"duration\":\"PT17.5510901S\",\"correlationId\":\"f4dcc639-0fc4-4282-aa8d-ffc272fceb81\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/Containers(zhoxing-workspace)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.AzureActivityOMS\",\"name\":\"Microsoft.AzureActivityOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AzureActivity(zhoxing-test)\",\"marketplaceItemId\":\"Microsoft.AzureActivityOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.AzureActivityOMS.1.0.24/Artifacts/CreateResourcesDS2.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"2824832969719392094\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"AzureActivity\"]},\"subscriptions\":{\"type\":\"Array\",\"value\":[{\"name\":\"0b1f64711bf04ddaaec3cb9272f09590\",\"value\":\"00000000-0000-0000-0000-000000000000\"}]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-08T07:33:45.2430768Z\",\"duration\":\"PT59.8719665S\",\"correlationId\":\"3e4ddc68-cf08-4767-9be7-60d8afb66c51\",\"providers\":[{\"namespace\":\"Microsoft.OperationalInsights\",\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"westus\"]},{\"resourceType\":\"workspaces/datasources\",\"locations\":[\"westus\"]}]},{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\",\"resourceType\":\"Microsoft.OperationalInsights/workspaces\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test/datasources/0b1f64711bf04ddaaec3cb9272f09590\",\"resourceType\":\"Microsoft.OperationalInsights/workspaces/datasources\",\"resourceName\":\"zhoxing-test/0b1f64711bf04ddaaec3cb9272f09590\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationalInsights/workspaces/zhoxing-test/datasources/0b1f64711bf04ddaaec3cb9272f09590\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AzureActivity(zhoxing-test)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.KeyVaultAnalyticsOMS\",\"name\":\"Microsoft.KeyVaultAnalyticsOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/KeyVaultAnalytics(zhoxing-test)\",\"marketplaceItemId\":\"Microsoft.KeyVaultAnalyticsOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.KeyVaultAnalyticsOMS.1.0.3/Artifacts/CreateResources.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4518277868068772365\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"KeyVaultAnalytics\"]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-08T07:31:14.5063619Z\",\"duration\":\"PT1M57.3764608S\",\"correlationId\":\"e06589b6-9999-46b0-acd8-746d94a7929e\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/KeyVaultAnalytics(zhoxing-test)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.AzureSQLAnalyticsOMS\",\"name\":\"Microsoft.AzureSQLAnalyticsOMS\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AzureSQLAnalytics(zhoxing-test2)\",\"marketplaceItemId\":\"Microsoft.AzureSQLAnalyticsOMS\"},\"properties\":{\"templateLink\":{\"uri\":\"https://gallery.azure.com/artifact/20161101/Microsoft.AzureSQLAnalyticsOMS.1.0.4/Artifacts/CreateResources.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4518277868068772365\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"australiacentral\"},\"resourcegroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"workspaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test2\"},\"solutionTypes\":{\"type\":\"Array\",\"value\":[\"AzureSQLAnalytics\"]}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-08T07:28:49.7614647Z\",\"duration\":\"PT14.0840378S\",\"correlationId\":\"e9334b54-aa8b-40f6-aa91-57407411b296\",\"providers\":[{\"namespace\":\"Microsoft.OperationsManagement\",\"resourceTypes\":[{\"resourceType\":\"solutions\",\"locations\":[\"australiacentral\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.OperationsManagement/solutions/AzureSQLAnalytics(zhoxing-test2)\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.RecoveryServicesV2\",\"name\":\"Microsoft.RecoveryServicesV2\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.RecoveryServices/vaults/zhoxing-test3\",\"marketplaceItemId\":\"Microsoft.RecoveryServices\"},\"properties\":{\"templateHash\":\"3053162932619023657\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test3\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"apiVersion\":{\"type\":\"String\",\"value\":\"2016-06-01\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-08T06:25:27.3405945Z\",\"duration\":\"PT1M48.3942152S\",\"correlationId\":\"2deaa1e6-0adc-46a3-b111-fe8f37f1b398\",\"providers\":[{\"namespace\":\"Microsoft.RecoveryServices\",\"resourceTypes\":[{\"resourceType\":\"vaults\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.RecoveryServices/vaults/zhoxing-test3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.AutomationAccount\",\"name\":\"Microsoft.AutomationAccount\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\",\"marketplaceItemId\":\"Microsoft.AutomationAccount\"},\"properties\":{\"templateHash\":\"5138374320965475375\",\"parameters\":{\"accountName\":{\"type\":\"String\",\"value\":\"zhoxingtest-account\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"sampleGraphicalRunbookName\":{\"type\":\"String\",\"value\":\"AzureAutomationTutorial\"},\"sampleGraphicalRunbookDescription\":{\"type\":\"String\",\"value\":\" An example runbook which gets all the ARM resources using the Run As Account (Service Principal).\"},\"sampleGraphicalRunbookContentUri\":{\"type\":\"String\",\"value\":\"https://eus2oaasibizamarketprod1.blob.core.windows.net/marketplace-runbooks/AzureAutomationTutorial.graphrunbook\"},\"samplePowerShellRunbookName\":{\"type\":\"String\",\"value\":\"AzureAutomationTutorialScript\"},\"samplePowerShellRunbookDescription\":{\"type\":\"String\",\"value\":\" An example runbook which gets all the ARM resources using the Run As Account (Service Principal).\"},\"samplePowerShellRunbookContentUri\":{\"type\":\"String\",\"value\":\"https://eus2oaasibizamarketprod1.blob.core.windows.net/marketplace-runbooks/AzureAutomationTutorial.ps1\"},\"samplePython2RunbookName\":{\"type\":\"String\",\"value\":\"AzureAutomationTutorialPython2\"},\"samplePython2RunbookDescription\":{\"type\":\"String\",\"value\":\" An example runbook which gets all the ARM resources using the Run As Account (Service Principal).\"},\"samplePython2RunbookContentUri\":{\"type\":\"String\",\"value\":\"https://eus2oaasibizamarketprod1.blob.core.windows.net/marketplace-runbooks/AzureAutomationTutorialPython2.py\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-07T05:48:49.7005559Z\",\"duration\":\"PT18.8833457S\",\"correlationId\":\"ee614d1b-52ab-4ef0-afdf-d922915f2b3e\",\"providers\":[{\"namespace\":\"Microsoft.Automation\",\"resourceTypes\":[{\"resourceType\":\"automationAccounts\",\"locations\":[\"westus\"]},{\"resourceType\":\"automationAccounts/runbooks\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\",\"resourceType\":\"Microsoft.Automation/automationAccounts\",\"resourceName\":\"zhoxingtest-account\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorial\",\"resourceType\":\"Microsoft.Automation/automationAccounts/runbooks\",\"resourceName\":\"zhoxingtest-account/AzureAutomationTutorial\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\",\"resourceType\":\"Microsoft.Automation/automationAccounts\",\"resourceName\":\"zhoxingtest-account\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorialScript\",\"resourceType\":\"Microsoft.Automation/automationAccounts/runbooks\",\"resourceName\":\"zhoxingtest-account/AzureAutomationTutorialScript\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\",\"resourceType\":\"Microsoft.Automation/automationAccounts\",\"resourceName\":\"zhoxingtest-account\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorialPython2\",\"resourceType\":\"Microsoft.Automation/automationAccounts/runbooks\",\"resourceName\":\"zhoxingtest-account/AzureAutomationTutorialPython2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorial\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorialPython2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Automation/automationAccounts/zhoxingtest-account/runbooks/AzureAutomationTutorialScript\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment2\",\"name\":\"vmDiagDeployment2\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/vmDiagnostics.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4451127679186685416\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSQL-vm\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:59:42.5985993Z\",\"duration\":\"PT1M26.6277747S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines/extensions\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"idgdiag6472qnxl3vv5o\",\"actionName\":\"listkeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\"resourceType\":\"Microsoft.Compute/virtualMachines/extensions\",\"resourceName\":\"IdgSQL-vm/Microsoft.Insights.VMDiagnosticsSettings\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment0\",\"name\":\"vmDiagDeployment0\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/vmDiagnostics.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4451127679186685416\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgProv-vm\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:59:11.4939667Z\",\"duration\":\"PT56.0439465S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines/extensions\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"idgdiag6472qnxl3vv5o\",\"actionName\":\"listkeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\"resourceType\":\"Microsoft.Compute/virtualMachines/extensions\",\"resourceName\":\"IdgProv-vm/Microsoft.Insights.VMDiagnosticsSettings\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment3\",\"name\":\"vmDiagDeployment3\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/vmDiagnostics.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4451127679186685416\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSSIS-vm\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:58:54.7494606Z\",\"duration\":\"PT1M20.2135439S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines/extensions\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"idgdiag6472qnxl3vv5o\",\"actionName\":\"listkeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\"resourceType\":\"Microsoft.Compute/virtualMachines/extensions\",\"resourceName\":\"IdgSSIS-vm/Microsoft.Insights.VMDiagnosticsSettings\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment1\",\"name\":\"vmDiagDeployment1\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/vmDiagnostics.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"4451127679186685416\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgBridge-vm\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:59:07.2319602Z\",\"duration\":\"PT2M38.7113347S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines/extensions\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"idgdiag6472qnxl3vv5o\",\"actionName\":\"listkeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\"resourceType\":\"Microsoft.Compute/virtualMachines/extensions\",\"resourceName\":\"IdgBridge-vm/Microsoft.Insights.VMDiagnosticsSettings\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment3\",\"name\":\"vmDeployment3\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualMachines.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10830273775427581387\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSSIS-vm\"},\"vmSize\":{\"type\":\"String\",\"value\":\"Standard_D8s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:57:30.3562117Z\",\"duration\":\"PT1M29.1949855S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment2\",\"name\":\"vmDeployment2\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualMachines.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10830273775427581387\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSQL-vm\"},\"vmSize\":{\"type\":\"String\",\"value\":\"Standard_D8s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:56:55.9936166Z\",\"duration\":\"PT1M3.9200963S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment0\",\"name\":\"vmDeployment0\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualMachines.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10830273775427581387\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgProv-vm\"},\"vmSize\":{\"type\":\"String\",\"value\":\"Standard_D8s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:57:34.837224Z\",\"duration\":\"PT1M48.2756885S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment1\",\"name\":\"vmDeployment1\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualMachines.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10830273775427581387\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgBridge-vm\"},\"vmSize\":{\"type\":\"String\",\"value\":\"Standard_D2s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:56:23.0087151Z\",\"duration\":\"PT51.2902622S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment0\",\"name\":\"nicDeployment0\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkInterfaces.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12524672659573940803\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgProv-vm\"},\"acclNetwork\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:37.7038947Z\",\"duration\":\"PT17.584134S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgProv-vm-nic\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment1\",\"name\":\"nicDeployment1\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkInterfaces.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12524672659573940803\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgBridge-vm\"},\"acclNetwork\":{\"type\":\"Bool\",\"value\":false}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:25.6276069Z\",\"duration\":\"PT5.5078479S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgBridge-vm-nic\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment2\",\"name\":\"nicDeployment2\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkInterfaces.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12524672659573940803\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSQL-vm\"},\"acclNetwork\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:29.9412006Z\",\"duration\":\"PT9.825009S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgSQL-vm-nic\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment3\",\"name\":\"nicDeployment3\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkInterfaces.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12524672659573940803\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"vmName\":{\"type\":\"String\",\"value\":\"IdgSSIS-vm\"},\"acclNetwork\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:30.4694553Z\",\"duration\":\"PT10.630804S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgSSIS-vm-nic\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"name\":\"vnetDeployment\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/virtualNetworks.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"5494195655921763108\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"idgAppVnetCidr\":{\"type\":\"String\",\"value\":\"192.168.1.0/24\"},\"dnsServer\":{\"type\":\"String\",\"value\":\"127.0.0.1\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:55:05.4129775Z\",\"duration\":\"PT2M41.4654211S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/IdgApp-vnet\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/pid-da2390a8-7157-4348-8621-c0976bd5f1c6\",\"name\":\"pid-da2390a8-7157-4348-8621-c0976bd5f1c6\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"1785727386360713170\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:51:50.5099687Z\",\"duration\":\"PT1.8954266S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[],\"dependencies\":[],\"outputResources\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nsgDeployment\",\"name\":\"nsgDeployment\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/networkSecurityGroups.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"10642932090194121923\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:52:13.8036944Z\",\"duration\":\"PT25.4723982S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/IdgApp-nsg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"name\":\"storageAcctDeployment\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/nestedTemplates/storageAccounts.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"18339431791584614211\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T08:53:52.4748921Z\",\"duration\":\"PT2M4.9763098S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/imprivatainc1580479939967.imprivata-identity-gove-20200403164818\",\"name\":\"imprivatainc1580479939967.imprivata-identity-gove-20200403164818\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test\",\"marketplaceItemId\":\"imprivatainc1580479939967.imprivata-identity-governance-solutionidgstandardplan\"},\"properties\":{\"templateLink\":{\"uri\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/mainTemplate.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"859551663346694352\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPassword\":{\"type\":\"SecureString\"},\"idgAppVnetCidr\":{\"type\":\"String\",\"value\":\"192.168.1.0/24\"},\"dnsServer\":{\"type\":\"String\",\"value\":\"127.0.0.1\"},\"diagStorageAcctName\":{\"type\":\"String\",\"value\":\"idgdiag6472qnxl3vv5o\"},\"_artifactsLocation\":{\"type\":\"String\",\"value\":\"https://catalogartifact.azureedge.net/publicartifacts/imprivatainc1580479939967.imprivata-identity-governance-solution-c0797466-dca0-4f45-b5b7-3a7c0eccdd48-idgstandardplan/Artifacts/mainTemplate.json\"},\"_artifactsLocationSasToken\":{\"type\":\"SecureString\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-03T09:01:06.5682687Z\",\"duration\":\"PT9M29.2016413S\",\"correlationId\":\"f81a1288-24c7-4407-b738-713ca7f7688c\",\"providers\":[{\"namespace\":\"Microsoft.Resources\",\"resourceTypes\":[{\"resourceType\":\"deployments\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nsgDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nsgDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment0\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment2\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vnetDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vnetDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment3\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment0\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment0\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment2\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment2\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/nicDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"nicDeployment3\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment3\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment0\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageAcctDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment0\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDiagDeployment0\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageAcctDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment1\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDiagDeployment1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageAcctDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment2\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDiagDeployment2\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDeployment3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/storageAcctDeployment\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"storageAcctDeployment\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/vmDiagDeployment3\",\"resourceType\":\"Microsoft.Resources/deployments\",\"resourceName\":\"vmDiagDeployment3\"}],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgBridge-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgProv-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSQL-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/IdgSSIS-vm/extensions/Microsoft.Insights.VMDiagnosticsSettings\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgBridge-vm-nic\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgProv-vm-nic\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgSQL-vm-nic\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/IdgSSIS-vm-nic\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/IdgApp-nsg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/IdgApp-vnet\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/simple_deploy_template\",\"name\":\"simple_deploy_template\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"3058235493749754305\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"test-lb\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"privateIPAllocationMethod\":{\"type\":\"String\",\"value\":\"Dynamic\"},\"tags\":{\"type\":\"Object\",\"value\":{\"key\":\"super=value\"}}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-04-02T03:06:24.1818395Z\",\"duration\":\"PT14.8233657S\",\"correlationId\":\"ca708581-b371-4382-a6d6-5abec0f80d25\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"loadBalancers\",\"locations\":[\"westus\"]}]}],\"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\":\"InvalidTemplate\",\"message\":\"Unable to process template language expressions for resource '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/loadBalancers/test-lb' at line '1' and column '319'. 'The template parameter 'backendAddressPools' is not found. Please see https://aka.ms/arm-template/#parameters for usage details.'\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.CDN-Profilee5b1f1ba-1864-485e-9ad6-f8bd9a3ce039\",\"name\":\"Microsoft.CDN-Profilee5b1f1ba-1864-485e-9ad6-f8bd9a3ce039\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/microsoft.cdn/profiles/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.CDN\"},\"properties\":{\"templateHash\":\"14732945376673591230\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"Global\"},\"sku\":{\"type\":\"Object\",\"value\":{\"name\":\"Standard_Microsoft\"}},\"properties\":{\"type\":\"Object\",\"value\":{}}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-04-02T03:06:06.8118181Z\",\"duration\":\"PT27.868616S\",\"correlationId\":\"ec814e94-c7c8-415e-b86f-9d7d9365a8e2\",\"providers\":[{\"namespace\":\"microsoft.cdn\",\"resourceTypes\":[{\"resourceType\":\"profiles\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.cdn/profiles/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Web-WebApp-Portal-2f67a819-99c8\",\"name\":\"Microsoft.Web-WebApp-Portal-2f67a819-99c8\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxingtest\",\"marketplaceItemId\":\"Microsoft.WebSite\"},\"properties\":{\"templateHash\":\"46673888788683167\",\"parameters\":{\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxingtest\"},\"location\":{\"type\":\"String\",\"value\":\"Central US\"},\"hostingEnvironment\":{\"type\":\"String\",\"value\":\"\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"ASP-zhoxingtest-b6db\"},\"serverFarmResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"alwaysOn\":{\"type\":\"Bool\",\"value\":true},\"linuxFxVersion\":{\"type\":\"String\",\"value\":\"DOTNETCORE|3.1\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-21T05:03:38.610818Z\",\"duration\":\"PT1M56.1369546S\",\"correlationId\":\"23ea4696-8e18-4ddb-a5b6-41d7796bee9b\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"sites\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxingtest\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.SSL\",\"name\":\"Microsoft.SSL\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.SSL\"},\"properties\":{\"templateHash\":\"12688158336463581370\",\"parameters\":{\"certificateOrderName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"distinguishedName\":{\"type\":\"String\",\"value\":\"CN=azure.com\"},\"validityInYears\":{\"type\":\"Int\",\"value\":1},\"productType\":{\"type\":\"String\",\"value\":\"StandardDomainValidatedSsl\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-16T02:40:16.9924212Z\",\"duration\":\"PT2M46.4663723S\",\"correlationId\":\"9471490e-7e59-467d-8f14-48f8ccd95222\",\"providers\":[{\"namespace\":\"Microsoft.CertificateRegistration\",\"resourceTypes\":[{\"resourceType\":\"certificateOrders\",\"locations\":[\"global\"]},{\"resourceType\":\"certificateOrders/providers/locks\",\"locations\":[null]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test\",\"resourceType\":\"Microsoft.CertificateRegistration/certificateOrders\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test/providers/Microsoft.Authorization/locks/zhoxing-test\",\"resourceType\":\"Microsoft.CertificateRegistration/certificateOrders/providers/locks\",\"resourceName\":\"zhoxing-test/Microsoft.Authorization/zhoxing-test\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.CertificateRegistration/certificateOrders/zhoxing-test/providers/Microsoft.Authorization/locks/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Web-WebApp-Portal-a6e35847-84dc\",\"name\":\"Microsoft.Web-WebApp-Portal-a6e35847-84dc\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test3\",\"marketplaceItemId\":\"Microsoft.WebSite\"},\"properties\":{\"templateHash\":\"3507869378131688434\",\"parameters\":{\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test3\"},\"location\":{\"type\":\"String\",\"value\":\"North Europe\"},\"hostingEnvironment\":{\"type\":\"String\",\"value\":\"\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"ASP-zhoxingtest-a4dc\"},\"serverFarmResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"alwaysOn\":{\"type\":\"Bool\",\"value\":true},\"sku\":{\"type\":\"String\",\"value\":\"PremiumV2\"},\"skuCode\":{\"type\":\"String\",\"value\":\"P1v2\"},\"workerSize\":{\"type\":\"String\",\"value\":\"3\"},\"workerSizeId\":{\"type\":\"String\",\"value\":\"3\"},\"numberOfWorkers\":{\"type\":\"String\",\"value\":\"1\"},\"linuxFxVersion\":{\"type\":\"String\",\"value\":\"TOMCAT|8.5-java11\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-09T09:44:30.0394772Z\",\"duration\":\"PT2M14.3998742S\",\"correlationId\":\"e9c6365d-1b9d-47cb-88bc-2ff7a7aef6e2\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"sites\",\"locations\":[\"northeurope\"]},{\"resourceType\":\"serverfarms\",\"locations\":[\"northeurope\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-zhoxingtest-a4dc\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-zhoxingtest-a4dc\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test3\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"zhoxing-test3\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-zhoxingtest-a4dc\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test3\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Azconfig_1\",\"name\":\"Microsoft.Azconfig_1\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.AppConfiguration/configurationStores/zhoxig-test\",\"marketplaceItemId\":\"Microsoft.Azconfig\"},\"properties\":{\"templateHash\":\"7820839542378675066\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxig-test\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"apiVersion\":{\"type\":\"String\",\"value\":\"2019-11-01-preview\"},\"sku\":{\"type\":\"String\",\"value\":\"standard\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-09T09:37:48.9475481Z\",\"duration\":\"PT1M9.4420097S\",\"correlationId\":\"309d8e1f-d83b-41af-a2b4-4fc2b8cf01f8\",\"providers\":[{\"namespace\":\"Microsoft.AppConfiguration\",\"resourceTypes\":[{\"resourceType\":\"configurationStores\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.AppConfiguration/configurationStores/zhoxig-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Azconfig\",\"name\":\"Microsoft.Azconfig\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.AppConfiguration/configurationStores/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.Azconfig\"},\"properties\":{\"templateHash\":\"7820839542378675066\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"apiVersion\":{\"type\":\"String\",\"value\":\"2019-11-01-preview\"},\"sku\":{\"type\":\"String\",\"value\":\"standard\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-09T09:36:45.6118614Z\",\"duration\":\"PT42.8616547S\",\"correlationId\":\"f6250c7e-1445-48f4-9a75-cb108ec016f2\",\"providers\":[{\"namespace\":\"Microsoft.AppConfiguration\",\"resourceTypes\":[{\"resourceType\":\"configurationStores\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.AppConfiguration/configurationStores/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Web-WebApp-Portal-79a51ab5-9a12\",\"name\":\"Microsoft.Web-WebApp-Portal-79a51ab5-9a12\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test2\",\"marketplaceItemId\":\"Microsoft.WebSite\"},\"properties\":{\"templateHash\":\"17885055924378240489\",\"parameters\":{\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test2\"},\"location\":{\"type\":\"String\",\"value\":\"Central US\"},\"hostingEnvironment\":{\"type\":\"String\",\"value\":\"\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"ASP-zhoxingtest-b6db\"},\"serverFarmResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"alwaysOn\":{\"type\":\"Bool\",\"value\":true},\"linuxFxVersion\":{\"type\":\"String\",\"value\":\"JAVA|11-java11\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-09T07:58:15.4849103Z\",\"duration\":\"PT2M54.4266008S\",\"correlationId\":\"f548362c-5720-4a35-aff0-6d85c593147b\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"sites\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.VirtualNetwork-20200306160007\",\"name\":\"Microsoft.VirtualNetwork-20200306160007\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.VirtualNetwork-ARM\"},\"properties\":{\"templateHash\":\"417543149591126485\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"virtualNetworkName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"resourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"addressSpaces\":{\"type\":\"Array\",\"value\":[\"10.13.0.0/16\"]},\"ipv6Enabled\":{\"type\":\"Bool\",\"value\":false},\"subnetCount\":{\"type\":\"Int\",\"value\":1},\"subnet0_name\":{\"type\":\"String\",\"value\":\"default\"},\"subnet0_addressRange\":{\"type\":\"String\",\"value\":\"10.13.0.0/24\"},\"ddosProtectionPlanEnabled\":{\"type\":\"Bool\",\"value\":false},\"firewallEnabled\":{\"type\":\"Bool\",\"value\":false},\"bastionEnabled\":{\"type\":\"Bool\",\"value\":false}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-06T08:01:51.58624Z\",\"duration\":\"PT52.5208802S\",\"correlationId\":\"7edf093d-47e5-491f-9168-3824b2f63bfe\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/VirtualNetworks/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/template-file\",\"name\":\"template-file\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"702802757667029667\",\"parameters\":{\"function-app-name\":{\"type\":\"String\",\"value\":\"orderProcessing\"},\"sku\":{\"type\":\"String\",\"value\":\"S3\"},\"storageAccountType\":{\"type\":\"String\",\"value\":\"Standard_LRS\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"},\"deploymentEnvironment\":{\"type\":\"String\",\"value\":\"CI\"},\"applicationSettings\":{\"type\":\"Object\",\"value\":{\"CI\":{\"AzureWebJobsStorage\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsDashboard\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBus\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBusSource\":\"fakeCIProportiesPlaceholder\",\"ApplicationServiceBus\":\"fakeCIProportiesPlaceholder\",\"MobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"MenuDataMobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"IDPDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbEndPointUrl\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbAuthKey\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppUrl\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppKey\":\"fakeCIProportiesPlaceholder\",\"CosmosDBConnectionString\":\"fakeCIProportiesPlaceholder\",\"Xpient.MoBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.X-Company-Id\":\"fakeCIProportiesPlaceholder\",\"Xpient.keyId\":\"fakeCIProportiesPlaceholder\",\"Xpient.secretKey\":\"fakeCIProportiesPlaceholder\",\"Xpient.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"ServiceEndpoint\":\"fakeCIProportiesPlaceholder\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"fakeCIProportiesPlaceholder\",\"Aloha.MaxLane\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ShareFolderName\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ConnectionString\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.OrderMenuFolder\":\"fakeCIProportiesPlaceholder\",\"Givex.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternateUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.UserId\":\"fakeCIProportiesPlaceholder\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternatePort\":\"fakeCIProportiesPlaceholder\",\"Givex.ReversalTimeout\":\"fakeCIProportiesPlaceholder\",\"Givex.MaxGiftCardBalance\":\"fakeCIProportiesPlaceholder\",\"Paypal.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.ClientId\":\"fakeCIProportiesPlaceholder\",\"PayPal.SecretKey\":\"fakeCIProportiesPlaceholder\",\"Paypal.Scope\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Cancel\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Return\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.RefreshTokenUrl\":\"fakeCIProportiesPlaceholder\",\"stripeapikeyprivatekey\":\"fakeCIProportiesPlaceholder\",\"StripeApiKeyPubKey\":\"fakeCIProportiesPlaceholder\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"fakeCIProportiesPlaceholder\",\"RetryCount\":\"fakeCIProportiesPlaceholder\",\"StripeCardLimit\":\"fakeCIProportiesPlaceholder\",\"SignalNotificationHubUrl\":\"fakeCIProportiesPlaceholder\",\"NotificationHubName\":\"fakeCIProportiesPlaceholder\",\"DefaultFullSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"DefaultListenSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"LoyaltyWebserviceAddress\":\"fakeCIProportiesPlaceholder\",\"EnableValidation\":\"fakeCIProportiesPlaceholder\",\"MaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"Aloha.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Aloha.BasicAuthenticationKey\":\"fakeCIProportiesPlaceholder\",\"DeploymentEnv\":\"fakeCIProportiesPlaceholder\",\"Aloha.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"Aloha.DefaultItemQuantity\":\"1\",\"Aloha.Terminal\":\"fakeCIProportiesPlaceholder\",\"Aloha.ValidateFailedItems\":\"fakeCIProportiesPlaceholder\",\"POS.ThresholdPercent\":\"fakeCIProportiesPlaceholder\",\"IDP.TokenUrl\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId.Internal\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret.Internal\":\"fakeCIProportiesPlaceholder\",\"FromEmail\":\"fakeCIProportiesPlaceholder\",\"FromName\":\"fakeCIProportiesPlaceholder\",\"SupportEmail\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.UserName\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"fakeCIProportiesPlaceholder\",\"LogOrderStep\":\"fakeCIProportiesPlaceholder\",\"EmergencyClosureMinutesToCancellation\":\"fakeCIProportiesPlaceholder\",\"ServiceBusMaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"XpientMaxOrderRetryCount\":\"fakeCIProportiesPlaceholder\"},\"DEV\":{\"AzureWebJobsStorage\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsDashboard\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBus\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBusSource\":\"fakeCIProportiesPlaceholder\",\"ApplicationServiceBus\":\"fakeCIProportiesPlaceholder\",\"MobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"MenuDataMobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"IDPDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbEndPointUrl\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbAuthKey\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppUrl\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppKey\":\"fakeCIProportiesPlaceholder\",\"CosmosDBConnectionString\":\"fakeCIProportiesPlaceholder\",\"Xpient.MoBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.X-Company-Id\":\"fakeCIProportiesPlaceholder\",\"Xpient.keyId\":\"fakeCIProportiesPlaceholder\",\"Xpient.secretKey\":\"fakeCIProportiesPlaceholder\",\"Xpient.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"ServiceEndpoint\":\"fakeCIProportiesPlaceholder\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"fakeCIProportiesPlaceholder\",\"Aloha.MaxLane\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ShareFolderName\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ConnectionString\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.OrderMenuFolder\":\"fakeCIProportiesPlaceholder\",\"Givex.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternateUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.UserId\":\"fakeCIProportiesPlaceholder\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternatePort\":\"fakeCIProportiesPlaceholder\",\"Givex.ReversalTimeout\":\"fakeCIProportiesPlaceholder\",\"Givex.MaxGiftCardBalance\":\"fakeCIProportiesPlaceholder\",\"Paypal.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.ClientId\":\"fakeCIProportiesPlaceholder\",\"PayPal.SecretKey\":\"fakeCIProportiesPlaceholder\",\"Paypal.Scope\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Cancel\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Return\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.RefreshTokenUrl\":\"fakeCIProportiesPlaceholder\",\"stripeapikeyprivatekey\":\"fakeCIProportiesPlaceholder\",\"StripeApiKeyPubKey\":\"fakeCIProportiesPlaceholder\",\"StripeCurrency\":\"fakeCIProportiesPlaceholder\",\"StripeCentsMultiplier\":\"fakeCIProportiesPlaceholder\",\"RetryCount\":\"fakeCIProportiesPlaceholder\",\"StripeCardLimit\":\"fakeCIProportiesPlaceholder\",\"SignalNotificationHubUrl\":\"fakeCIProportiesPlaceholder\",\"NotificationHubName\":\"fakeCIProportiesPlaceholder\",\"DefaultFullSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"DefaultListenSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"LoyaltyWebserviceAddress\":\"fakeCIProportiesPlaceholder\",\"EnableValidation\":\"fakeCIProportiesPlaceholder\",\"MaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"Aloha.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Aloha.BasicAuthenticationKey\":\"fakeCIProportiesPlaceholder\",\"DeploymentEnv\":\"fakeCIProportiesPlaceholder\",\"Aloha.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"Aloha.DefaultItemQuantity\":\"fakeCIProportiesPlaceholder\",\"Aloha.Terminal\":\"fakeCIProportiesPlaceholder\",\"Aloha.ValidateFailedItems\":\"fakeCIProportiesPlaceholder\",\"POS.ThresholdPercent\":\"fakeCIProportiesPlaceholder\",\"IDP.TokenUrl\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId.Internal\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret.Internal\":\"fakeCIProportiesPlaceholder\",\"FromEmail\":\"fakeCIProportiesPlaceholder\",\"FromName\":\"fakeCIProportiesPlaceholder\",\"SupportEmail\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.UserName\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"fakeCIProportiesPlaceholder\",\"LogOrderStep\":\"fakeCIProportiesPlaceholder\",\"EmergencyClosureMinutesToCancellation\":\"fakeCIProportiesPlaceholder\",\"ServiceBusMaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"XpientMaxOrderRetryCount\":\"fakeCIProportiesPlaceholder\"},\"QA\":{\"AzureWebJobsStorage\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsDashboard\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBus\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBusSource\":\"fakeCIProportiesPlaceholder\",\"ApplicationServiceBus\":\"fakeCIProportiesPlaceholder\",\"MobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"MenuDataMobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"IDPDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbEndPointUrl\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbAuthKey\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppUrl\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppKey\":\"fakeCIProportiesPlaceholder\",\"CosmosDBConnectionString\":\"fakeCIProportiesPlaceholder\",\"Xpient.MoBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.X-Company-Id\":\"fakeCIProportiesPlaceholder\",\"Xpient.keyId\":\"fakeCIProportiesPlaceholder\",\"Xpient.secretKey\":\"fakeCIProportiesPlaceholder\",\"Xpient.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"ServiceEndpoint\":\"fakeCIProportiesPlaceholder\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"fakeCIProportiesPlaceholder\",\"Aloha.MaxLane\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ShareFolderName\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ConnectionString\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.OrderMenuFolder\":\"fakeCIProportiesPlaceholder\",\"Givex.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternateUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.UserId\":\"fakeCIProportiesPlaceholder\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternatePort\":\"fakeCIProportiesPlaceholder\",\"Givex.ReversalTimeout\":\"fakeCIProportiesPlaceholder\",\"Givex.MaxGiftCardBalance\":\"fakeCIProportiesPlaceholder\",\"Paypal.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.ClientId\":\"fakeCIProportiesPlaceholder\",\"PayPal.SecretKey\":\"fakeCIProportiesPlaceholder\",\"Paypal.Scope\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Cancel\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Return\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.RefreshTokenUrl\":\"fakeCIProportiesPlaceholder\",\"stripeapikeyprivatekey\":\"fakeCIProportiesPlaceholder\",\"StripeApiKeyPubKey\":\"fakeCIProportiesPlaceholder\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"fakeCIProportiesPlaceholder\",\"RetryCount\":\"fakeCIProportiesPlaceholder\",\"StripeCardLimit\":\"fakeCIProportiesPlaceholder\",\"SignalNotificationHubUrl\":\"fakeCIProportiesPlaceholder\",\"NotificationHubName\":\"fakeCIProportiesPlaceholder\",\"DefaultFullSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"DefaultListenSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"LoyaltyWebserviceAddress\":\"fakeCIProportiesPlaceholder\",\"EnableValidation\":\"fakeCIProportiesPlaceholder\",\"MaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"Aloha.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Aloha.BasicAuthenticationKey\":\"fakeCIProportiesPlaceholder\",\"DeploymentEnv\":\"fakeCIProportiesPlaceholder\",\"Aloha.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"Aloha.DefaultItemQuantity\":\"fakeCIProportiesPlaceholder\",\"Aloha.Terminal\":\"fakeCIProportiesPlaceholder\",\"Aloha.ValidateFailedItems\":\"fakeCIProportiesPlaceholder\",\"POS.ThresholdPercent\":\"fakeCIProportiesPlaceholder\",\"IDP.TokenUrl\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId.Internal\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret.Internal\":\"fakeCIProportiesPlaceholder\",\"FromEmail\":\"fakeCIProportiesPlaceholder\",\"FromName\":\"fakeCIProportiesPlaceholder\",\"SupportEmail\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.UserName\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"fakeCIProportiesPlaceholder\",\"LogOrderStep\":\"fakeCIProportiesPlaceholder\",\"EmergencyClosureMinutesToCancellation\":\"fakeCIProportiesPlaceholder\",\"ServiceBusMaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"XpientMaxOrderRetryCount\":\"fakeCIProportiesPlaceholder\"},\"STG\":{\"AzureWebJobsStorage\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsDashboard\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBus\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBusSource\":\"fakeCIProportiesPlaceholder\",\"ApplicationServiceBus\":\"fakeCIProportiesPlaceholder\",\"MobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"MenuDataMobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"IDPDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbEndPointUrl\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbAuthKey\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppUrl\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppKey\":\"fakeCIProportiesPlaceholder\",\"CosmosDBConnectionString\":\"fakeCIProportiesPlaceholder\",\"Xpient.MoBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.X-Company-Id\":\"fakeCIProportiesPlaceholder\",\"Xpient.keyId\":\"fakeCIProportiesPlaceholder\",\"Xpient.secretKey\":\"fakeCIProportiesPlaceholder\",\"Xpient.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"ServiceEndpoint\":\"fakeCIProportiesPlaceholder\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"fakeCIProportiesPlaceholder\",\"Aloha.MaxLane\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ShareFolderName\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ConnectionString\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.OrderMenuFolder\":\"fakeCIProportiesPlaceholder\",\"Givex.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternateUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.UserId\":\"fakeCIProportiesPlaceholder\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternatePort\":\"fakeCIProportiesPlaceholder\",\"Givex.ReversalTimeout\":\"fakeCIProportiesPlaceholder\",\"Givex.MaxGiftCardBalance\":\"fakeCIProportiesPlaceholder\",\"Paypal.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.ClientId\":\"fakeCIProportiesPlaceholder\",\"PayPal.SecretKey\":\"fakeCIProportiesPlaceholder\",\"Paypal.Scope\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Cancel\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Return\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.RefreshTokenUrl\":\"fakeCIProportiesPlaceholder\",\"stripeapikeyprivatekey\":\"fakeCIProportiesPlaceholder\",\"StripeApiKeyPubKey\":\"fakeCIProportiesPlaceholder\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"fakeCIProportiesPlaceholder\",\"RetryCount\":\"fakeCIProportiesPlaceholder\",\"StripeCardLimit\":\"fakeCIProportiesPlaceholder\",\"SignalNotificationHubUrl\":\"fakeCIProportiesPlaceholder\",\"NotificationHubName\":\"fakeCIProportiesPlaceholder\",\"DefaultFullSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"DefaultListenSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"LoyaltyWebserviceAddress\":\"fakeCIProportiesPlaceholder\",\"EnableValidation\":\"fakeCIProportiesPlaceholder\",\"MaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"Aloha.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Aloha.BasicAuthenticationKey\":\"fakeCIProportiesPlaceholder\",\"DeploymentEnv\":\"fakeCIProportiesPlaceholder\",\"Aloha.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"Aloha.DefaultItemQuantity\":\"fakeCIProportiesPlaceholder\",\"Aloha.Terminal\":\"fakeCIProportiesPlaceholder\",\"Aloha.ValidateFailedItems\":\"fakeCIProportiesPlaceholder\",\"POS.ThresholdPercent\":\"fakeCIProportiesPlaceholder\",\"IDP.TokenUrl\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId.Internal\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret.Internal\":\"fakeCIProportiesPlaceholder\",\"FromEmail\":\"fakeCIProportiesPlaceholder\",\"FromName\":\"fakeCIProportiesPlaceholder\",\"SupportEmail\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.UserName\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"fakeCIProportiesPlaceholder\",\"LogOrderStep\":\"fakeCIProportiesPlaceholder\",\"EmergencyClosureMinutesToCancellation\":\"fakeCIProportiesPlaceholder\",\"ServiceBusMaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"XpientMaxOrderRetryCount\":\"fakeCIProportiesPlaceholder\"},\"TRN\":{\"AzureWebJobsStorage\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsDashboard\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBus\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBusSource\":\"fakeCIProportiesPlaceholder\",\"ApplicationServiceBus\":\"fakeCIProportiesPlaceholder\",\"MobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"MenuDataMobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"IDPDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbEndPointUrl\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbAuthKey\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppUrl\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppKey\":\"fakeCIProportiesPlaceholder\",\"CosmosDBConnectionString\":\"fakeCIProportiesPlaceholder\",\"Xpient.MoBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.X-Company-Id\":\"fakeCIProportiesPlaceholder\",\"Xpient.keyId\":\"fakeCIProportiesPlaceholder\",\"Xpient.secretKey\":\"fakeCIProportiesPlaceholder\",\"Xpient.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"ServiceEndpoint\":\"fakeCIProportiesPlaceholder\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"fakeCIProportiesPlaceholder\",\"Aloha.MaxLane\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ShareFolderName\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ConnectionString\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.OrderMenuFolder\":\"fakeCIProportiesPlaceholder\",\"Givex.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternateUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.UserId\":\"fakeCIProportiesPlaceholder\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternatePort\":\"fakeCIProportiesPlaceholder\",\"Givex.ReversalTimeout\":\"fakeCIProportiesPlaceholder\",\"Givex.MaxGiftCardBalance\":\"fakeCIProportiesPlaceholder\",\"Paypal.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.ClientId\":\"fakeCIProportiesPlaceholder\",\"PayPal.SecretKey\":\"fakeCIProportiesPlaceholder\",\"Paypal.Scope\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Cancel\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Return\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.RefreshTokenUrl\":\"fakeCIProportiesPlaceholder\",\"stripeapikeyprivatekey\":\"fakeCIProportiesPlaceholder\",\"StripeApiKeyPubKey\":\"fakeCIProportiesPlaceholder\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"fakeCIProportiesPlaceholder\",\"RetryCount\":\"fakeCIProportiesPlaceholder\",\"StripeCardLimit\":\"fakeCIProportiesPlaceholder\",\"SignalNotificationHubUrl\":\"fakeCIProportiesPlaceholder\",\"NotificationHubName\":\"fakeCIProportiesPlaceholder\",\"DefaultFullSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"DefaultListenSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"LoyaltyWebserviceAddress\":\"fakeCIProportiesPlaceholder\",\"EnableValidation\":\"fakeCIProportiesPlaceholder\",\"MaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"Aloha.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Aloha.BasicAuthenticationKey\":\"fakeCIProportiesPlaceholder\",\"DeploymentEnv\":\"fakeCIProportiesPlaceholder\",\"Aloha.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"Aloha.DefaultItemQuantity\":\"fakeCIProportiesPlaceholder\",\"Aloha.Terminal\":\"fakeCIProportiesPlaceholder\",\"Aloha.ValidateFailedItems\":\"fakeCIProportiesPlaceholder\",\"POS.ThresholdPercent\":\"fakeCIProportiesPlaceholder\",\"IDP.TokenUrl\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId.Internal\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret.Internal\":\"fakeCIProportiesPlaceholder\",\"FromEmail\":\"fakeCIProportiesPlaceholder\",\"FromName\":\"fakeCIProportiesPlaceholder\",\"SupportEmail\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.UserName\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"fakeCIProportiesPlaceholder\",\"LogOrderStep\":\"fakeCIProportiesPlaceholder\",\"EmergencyClosureMinutesToCancellation\":\"fakeCIProportiesPlaceholder\",\"ServiceBusMaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"XpientMaxOrderRetryCount\":\"fakeCIProportiesPlaceholder\"},\"PROD\":{\"AzureWebJobsStorage\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsDashboard\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBus\":\"fakeCIProportiesPlaceholder\",\"AzureWebJobsServiceBusSource\":\"fakeCIProportiesPlaceholder\",\"ApplicationServiceBus\":\"fakeCIProportiesPlaceholder\",\"MobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"MenuDataMobileDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"IDPDbConnectionString\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbEndPointUrl\":\"fakeCIProportiesPlaceholder\",\"OrdersDocDbAuthKey\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppUrl\":\"fakeCIProportiesPlaceholder\",\"FunctionsAppKey\":\"fakeCIProportiesPlaceholder\",\"CosmosDBConnectionString\":\"fakeCIProportiesPlaceholder\",\"Xpient.MoBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Xpient.X-Company-Id\":\"fakeCIProportiesPlaceholder\",\"Xpient.keyId\":\"fakeCIProportiesPlaceholder\",\"Xpient.secretKey\":\"fakeCIProportiesPlaceholder\",\"Xpient.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"ServiceEndpoint\":\"fakeCIProportiesPlaceholder\",\"ServiceApiKey\":\"***REMOVED***\",\"Xpient.MaxLane\":\"fakeCIProportiesPlaceholder\",\"Aloha.MaxLane\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ShareFolderName\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.ConnectionString\":\"fakeCIProportiesPlaceholder\",\"AzureStorage.OrderMenuFolder\":\"fakeCIProportiesPlaceholder\",\"Givex.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternateUrl\":\"fakeCIProportiesPlaceholder\",\"Givex.UserId\":\"fakeCIProportiesPlaceholder\",\"Givex.Password\":\"***REMOVED***\",\"Givex.Port\":\"fakeCIProportiesPlaceholder\",\"Givex.AlternatePort\":\"fakeCIProportiesPlaceholder\",\"Givex.ReversalTimeout\":\"fakeCIProportiesPlaceholder\",\"Givex.MaxGiftCardBalance\":\"fakeCIProportiesPlaceholder\",\"Paypal.BaseUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.ClientId\":\"fakeCIProportiesPlaceholder\",\"PayPal.SecretKey\":\"fakeCIProportiesPlaceholder\",\"Paypal.Scope\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Cancel\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl.Return\":\"fakeCIProportiesPlaceholder\",\"PayPal.RedirectUrl\":\"fakeCIProportiesPlaceholder\",\"PayPal.RefreshTokenUrl\":\"fakeCIProportiesPlaceholder\",\"stripeapikeyprivatekey\":\"fakeCIProportiesPlaceholder\",\"StripeApiKeyPubKey\":\"fakeCIProportiesPlaceholder\",\"StripeCurrency\":\"usd\",\"StripeCentsMultiplier\":\"fakeCIProportiesPlaceholder\",\"RetryCount\":\"fakeCIProportiesPlaceholder\",\"StripeCardLimit\":\"fakeCIProportiesPlaceholder\",\"SignalNotificationHubUrl\":\"fakeCIProportiesPlaceholder\",\"NotificationHubName\":\"fakeCIProportiesPlaceholder\",\"DefaultFullSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"DefaultListenSharedAccessSignature\":\"fakeCIProportiesPlaceholder\",\"LoyaltyWebserviceAddress\":\"fakeCIProportiesPlaceholder\",\"EnableValidation\":\"fakeCIProportiesPlaceholder\",\"MaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"Aloha.PortalBaseUrl\":\"fakeCIProportiesPlaceholder\",\"Aloha.BasicAuthenticationKey\":\"fakeCIProportiesPlaceholder\",\"DeploymentEnv\":\"fakeCIProportiesPlaceholder\",\"Aloha.HonorLocalPriceCalculation\":\"fakeCIProportiesPlaceholder\",\"Aloha.DefaultItemQuantity\":\"fakeCIProportiesPlaceholder\",\"Aloha.Terminal\":\"fakeCIProportiesPlaceholder\",\"Aloha.ValidateFailedItems\":\"fakeCIProportiesPlaceholder\",\"POS.ThresholdPercent\":\"fakeCIProportiesPlaceholder\",\"IDP.TokenUrl\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientId.Internal\":\"fakeCIProportiesPlaceholder\",\"IDP.ClientSecret.Internal\":\"fakeCIProportiesPlaceholder\",\"FromEmail\":\"fakeCIProportiesPlaceholder\",\"FromName\":\"fakeCIProportiesPlaceholder\",\"SupportEmail\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.UserName\":\"fakeCIProportiesPlaceholder\",\"Sendgrid.Password\":\"***REMOVED***\",\"LogEmail\":\"fakeCIProportiesPlaceholder\",\"LogOrderStep\":\"fakeCIProportiesPlaceholder\",\"EmergencyClosureMinutesToCancellation\":\"fakeCIProportiesPlaceholder\",\"ServiceBusMaxRetryCount\":\"fakeCIProportiesPlaceholder\",\"XpientMaxOrderRetryCount\":\"fakeCIProportiesPlaceholder\"}}}},\"mode\":\"Incremental\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-03-04T10:14:30.6077838Z\",\"duration\":\"PT2M24.8861662S\",\"correlationId\":\"08fd1339-c062-4621-bef4-5e08fdc0c2c0\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"southcentralus\"]}]},{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/config\",\"locations\":[null]},{\"resourceType\":\"sites/slots\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"sites/slots/config\",\"locations\":[null]}]},{\"namespace\":\"Microsoft.Insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Insights/components/appInsights-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Insights/components\",\"resourceName\":\"appInsights-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-6472qnxl3vv5o\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"store6472qnxl3vv5o\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/config\",\"resourceName\":\"orderProcessing/appsettings\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"orderProcessing\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage\",\"resourceType\":\"Microsoft.Web/sites/slots\",\"resourceName\":\"orderProcessing/stage\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/orderProcessing/slots/stage/config/appsettings\",\"resourceType\":\"Microsoft.Web/sites/slots/config\",\"resourceName\":\"orderProcessing/stage/appsettings\"}],\"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\":[{\"message\":\"Website with given name orderProcessing already exists.\"}]}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.StorageAccount-20200303110739\",\"name\":\"Microsoft.StorageAccount-20200303110739\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\",\"marketplaceItemId\":\"Microsoft.StorageAccount-ARM\"},\"properties\":{\"templateHash\":\"11961669741847493773\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"storageAccountName\":{\"type\":\"String\",\"value\":\"zhoxingtest2\"},\"accountType\":{\"type\":\"String\",\"value\":\"Standard_RAGRS\"},\"kind\":{\"type\":\"String\",\"value\":\"StorageV2\"},\"accessTier\":{\"type\":\"String\",\"value\":\"Hot\"},\"supportsHttpsTrafficOnly\":{\"type\":\"Bool\",\"value\":true}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-03-03T03:10:37.6643123Z\",\"duration\":\"PT2M0.5505696S\",\"correlationId\":\"7052b29c-5b03-4e4f-8454-72c45a2e3cdd\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputs\":{},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-c5af8169\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-c5af8169\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"5172196015951101467\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-27T08:34:39.2688632Z\",\"duration\":\"PT14.8304657S\",\"correlationId\":\"71919fa6-53e8-4069-bcf1-fe70e2bbd3ab\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - appInsights-6472qnxl3vv5o\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/ManagedDisk.zhoxing-test-20200226171012\",\"name\":\"ManagedDisk.zhoxing-test-20200226171012\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/disks/zhoxing-test\"},\"properties\":{\"templateHash\":\"12039005862602491955\",\"parameters\":{\"diskName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"sku\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"diskSizeGb\":{\"type\":\"Int\",\"value\":1024},\"sourceResourceId\":{\"type\":\"String\",\"value\":\"\"},\"sourceUri\":{\"type\":\"String\",\"value\":\"\"},\"osType\":{\"type\":\"String\",\"value\":\"\"},\"createOption\":{\"type\":\"String\",\"value\":\"empty\"},\"hyperVGeneration\":{\"type\":\"String\",\"value\":\"V1\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-26T09:11:00.2182814Z\",\"duration\":\"PT38.6717939S\",\"correlationId\":\"3f30fb4e-5cd6-4d09-a86e-fe409e7cbf7f\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"disks\",\"locations\":[\"westus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/disks/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/CreateVm-Canonical.UbuntuServer-18.04-LTS-20200226163817\",\"name\":\"CreateVm-Canonical.UbuntuServer-18.04-LTS-20200226163817\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.VirtualMachine\",\"provisioningHash\":\"SolutionProvider\"},\"properties\":{\"templateHash\":\"1155335703276677740\",\"parameters\":{\"location\":{\"type\":\"String\",\"value\":\"westus\"},\"networkInterfaceName\":{\"type\":\"String\",\"value\":\"zhoxing-test115\"},\"networkSecurityGroupName\":{\"type\":\"String\",\"value\":\"zhoxing-test-nsg\"},\"networkSecurityGroupRules\":{\"type\":\"Array\",\"value\":[{\"name\":\"SSH\",\"properties\":{\"priority\":300,\"protocol\":\"TCP\",\"access\":\"Allow\",\"direction\":\"Inbound\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\"}}]},\"subnetName\":{\"type\":\"String\",\"value\":\"Dtlzhoxing-testSubnet\"},\"virtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/virtualNetworks/Dtlzhoxing-test\"},\"publicIpAddressName\":{\"type\":\"String\",\"value\":\"zhoxing-test-ip\"},\"publicIpAddressType\":{\"type\":\"String\",\"value\":\"Dynamic\"},\"publicIpAddressSku\":{\"type\":\"String\",\"value\":\"Basic\"},\"virtualMachineName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"virtualMachineRG\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"osDiskType\":{\"type\":\"String\",\"value\":\"Standard_LRS\"},\"ephemeralDiskType\":{\"type\":\"String\",\"value\":\"Local\"},\"virtualMachineSize\":{\"type\":\"String\",\"value\":\"Standard_D2s_v3\"},\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"adminPublicKey\":{\"type\":\"SecureString\"},\"diagnosticsStorageAccountName\":{\"type\":\"String\",\"value\":\"azhoxingtest9851\"},\"diagnosticsStorageAccountId\":{\"type\":\"String\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/azhoxingtest9851\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-26T08:51:00.5987566Z\",\"duration\":\"PT5M19.5821373S\",\"correlationId\":\"e1c52866-133b-46c5-b44f-4b189342f502\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"networkInterfaces\",\"locations\":[\"westus\"]},{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"westus\"]},{\"resourceType\":\"publicIpAddresses\",\"locations\":[\"westus\"]}]},{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test-nsg\",\"resourceType\":\"Microsoft.Network/networkSecurityGroups\",\"resourceName\":\"zhoxing-test-nsg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/publicIpAddresses/zhoxing-test-ip\",\"resourceType\":\"Microsoft.Network/publicIpAddresses\",\"resourceName\":\"zhoxing-test-ip\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test115\",\"resourceType\":\"Microsoft.Network/networkInterfaces\",\"resourceName\":\"zhoxing-test115\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test115\",\"resourceType\":\"Microsoft.Network/networkInterfaces\",\"resourceName\":\"zhoxing-test115\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\",\"resourceType\":\"Microsoft.Compute/virtualMachines\",\"resourceName\":\"zhoxing-test\"}],\"outputs\":{\"adminUsername\":{\"type\":\"String\",\"value\":\"zhoxing-test\"}},\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/virtualMachines/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkInterfaces/zhoxing-test115\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/networkSecurityGroups/zhoxing-test-nsg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Network/publicIpAddresses/zhoxing-test-ip\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.ManagedDisk-20200226152558\",\"name\":\"Microsoft.ManagedDisk-20200226152558\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Compute/disks/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.ManagedDisk\"},\"properties\":{\"templateHash\":\"12039005862602491955\",\"parameters\":{\"diskName\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"centralus\"},\"sku\":{\"type\":\"String\",\"value\":\"Premium_LRS\"},\"diskSizeGb\":{\"type\":\"Int\",\"value\":1024},\"sourceResourceId\":{\"type\":\"String\",\"value\":\"\"},\"sourceUri\":{\"type\":\"String\",\"value\":\"\"},\"osType\":{\"type\":\"String\",\"value\":\"\"},\"createOption\":{\"type\":\"String\",\"value\":\"empty\"},\"hyperVGeneration\":{\"type\":\"String\",\"value\":\"\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-26T07:29:17.6989646Z\",\"duration\":\"PT1M45.6036662S\",\"correlationId\":\"a3b05ab7-7067-42de-8a8f-69fb50d29cd6\",\"providers\":[{\"namespace\":\"Microsoft.Compute\",\"resourceTypes\":[{\"resourceType\":\"disks\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Compute/disks/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Failure-Anomalies-Alert-Rule-Deployment-f2c320be\",\"name\":\"Failure-Anomalies-Alert-Rule-Deployment-f2c320be\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"13072379069581100190\",\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-25T07:05:18.4469125Z\",\"duration\":\"PT1M34.5604185S\",\"correlationId\":\"f8973acb-0579-488d-8030-394695952ab2\",\"providers\":[{\"namespace\":\"microsoft.alertsmanagement\",\"resourceTypes\":[{\"resourceType\":\"smartdetectoralertrules\",\"locations\":[\"global\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.alertsmanagement/smartdetectoralertrules/Failure Anomalies - zhoxing-test\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.Web-FunctionApp-Portal-6d97c7e0-9fde\",\"name\":\"Microsoft.Web-FunctionApp-Portal-6d97c7e0-9fde\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.FunctionApp\",\"provisioningHash\":\"customize-to-open-functionapp-iframe-blade\"},\"properties\":{\"templateHash\":\"9962553435085722188\",\"parameters\":{\"subscriptionId\":{\"type\":\"String\",\"value\":\"00000000-0000-0000-0000-000000000000\"},\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"location\":{\"type\":\"String\",\"value\":\"Central US\"},\"hostingEnvironment\":{\"type\":\"String\",\"value\":\"\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"ASP-zhoxingtest-b6db\"},\"serverFarmResourceGroup\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"alwaysOn\":{\"type\":\"Bool\",\"value\":true},\"storageAccountName\":{\"type\":\"String\",\"value\":\"storageaccountzhoxib2a8\"},\"linuxFxVersion\":{\"type\":\"String\",\"value\":\"DOCKER|mcr.microsoft.com/azure-functions/python:2.0-python3.7-appservice\"},\"sku\":{\"type\":\"String\",\"value\":\"PremiumV2\"},\"skuCode\":{\"type\":\"String\",\"value\":\"P1v2\"},\"workerSize\":{\"type\":\"String\",\"value\":\"3\"},\"workerSizeId\":{\"type\":\"String\",\"value\":\"3\"},\"numberOfWorkers\":{\"type\":\"String\",\"value\":\"1\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-25T06:57:31.252644Z\",\"duration\":\"PT4M23.4856285S\",\"correlationId\":\"84740008-300c-4c04-9d61-fd48d35228fe\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"sites\",\"locations\":[\"centralus\"]},{\"resourceType\":\"serverfarms\",\"locations\":[\"centralus\"]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]},{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/zhoxing-test\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-zhoxingtest-b6db\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"ASP-zhoxingtest-b6db\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"storageaccountzhoxib2a8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/zhoxing-test\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"zhoxing-test\",\"apiVersion\":\"2015-05-01\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"storageaccountzhoxib2a8\",\"actionName\":\"listKeys\",\"apiVersion\":\"2019-06-01\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"zhoxing-test\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/microsoft.insights/components/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/serverfarms/ASP-zhoxingtest-b6db\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Web/sites/zhoxing-test\"}],\"validationLevel\":\"Template\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Resources/deployments/Microsoft.DevTestLab.15822636708715723\",\"name\":\"Microsoft.DevTestLab.15822636708715723\",\"type\":\"Microsoft.Resources/deployments\",\"tags\":{\"primaryResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\",\"marketplaceItemId\":\"Microsoft.DevTestLab\"},\"properties\":{\"templateHash\":\"12517873995286308294\",\"parameters\":{\"name\":{\"type\":\"String\",\"value\":\"zhoxing-test\"},\"regionId\":{\"type\":\"String\",\"value\":\"westus\"}},\"mode\":\"Incremental\",\"debugSetting\":{\"detailLevel\":\"None\"},\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-02-21T05:45:01.3414833Z\",\"duration\":\"PT2M52.6804059S\",\"correlationId\":\"95ef1f49-1b94-40e5-ae49-7bd3dd57aca7\",\"providers\":[{\"namespace\":\"Microsoft.DevTestLab\",\"resourceTypes\":[{\"resourceType\":\"labs\",\"locations\":[\"westus\"]},{\"resourceType\":\"labs/schedules\",\"locations\":[\"westus\"]},{\"resourceType\":\"labs/virtualNetworks\",\"locations\":[\"westus\"]},{\"resourceType\":\"labs/artifactSources\",\"locations\":[\"westus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\",\"resourceType\":\"Microsoft.DevTestLab/labs\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/schedules/LabVmsShutdown\",\"resourceType\":\"Microsoft.DevTestLab/labs/schedules\",\"resourceName\":\"zhoxing-test/LabVmsShutdown\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\",\"resourceType\":\"Microsoft.DevTestLab/labs\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/virtualNetworks/Dtlzhoxing-test\",\"resourceType\":\"Microsoft.DevTestLab/labs/virtualNetworks\",\"resourceName\":\"zhoxing-test/Dtlzhoxing-test\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\",\"resourceType\":\"Microsoft.DevTestLab/labs\",\"resourceName\":\"zhoxing-test\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/artifactSources/Public Environment Repo\",\"resourceType\":\"Microsoft.DevTestLab/labs/artifactSources\",\"resourceName\":\"zhoxing-test/Public Environment Repo\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/artifactSources/Public Environment Repo\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/schedules/LabVmsShutdown\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.DevTestLab/labs/zhoxing-test/virtualNetworks/Dtlzhoxing-test\"}],\"validationLevel\":\"Template\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null @@ -4523,4 +4523,4 @@ "Exception" : null } ], "variables" : [ "792432" ] -} \ No newline at end of file +} diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java index d8c0b808b01c..8a49abe0cd08 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinePropertiesTests.java @@ -44,7 +44,7 @@ public void testDeserialize() { SqlVirtualMachineProperties model = BinaryData .fromString( - "{\"virtualMachineResourceId\":\"myzydagfuaxbez\",\"provisioningState\":\"uokktwhrdxwz\",\"sqlImageOffer\":\"q\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"o\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeBootstrapCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorCredentialPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"xhqyudxorrqnb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Sunday\",\"maintenanceWindowStartingHour\":2041227856,\"maintenanceWindowDuration\":688230720},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":711383541,\"storageAccountUrl\":\"rm\",\"storageContainerName\":\"d\",\"storageAccessKey\":\"fakeAutoBackupStorageCredentialPlaceholder\",\"password\":\"fakeAutoBackupCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Monday\",\"Tuesday\",\"Sunday\"],\"fullBackupStartTime\":79438477,\"fullBackupWindowHours\":1785940860,\"logBackupFrequency\":1882721753},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"lhzdobp\",\"azureKeyVaultUrl\":\"mflbv\",\"servicePrincipalName\":\"chrkcciwwzjuqk\",\"servicePrincipalSecret\":\"sa\"},\"serverConfigurationsManagementSettings\":{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PUBLIC\",\"port\":1163138760,\"sqlAuthUpdateUserName\":\"fakeSqlAuthUpdateUserNamePlaceholder\",\"sqlAuthUpdatePassword\":\"fakeSqlAuthUpdatePasswordPlaceholder\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":93185233,\"startingDeviceId\":499062312,\"diskConfigurationType\":\"NEW\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":true},\"sqlInstanceSettings\":{\"collation\":\"hocohslkev\",\"maxDop\":1452843037,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":1915206631,\"maxServerMemoryMB\":635098272,\"isLpimEnabled\":true,\"isIfiEnabled\":true}},\"storageConfigurationSettings\":{\"sqlDataSettings\":{\"luns\":[750094319,441262471],\"defaultFilePath\":\"ithlvmezyvshxm\"},\"sqlLogSettings\":{\"luns\":[2042967034,820071175,681165656],\"defaultFilePath\":\"igrxwburvjxxjn\"},\"sqlTempDbSettings\":{\"dataFileSize\":655244901,\"dataGrowth\":796522407,\"logFileSize\":1581089013,\"logGrowth\":1482419493,\"dataFileCount\":368872056,\"persistFolder\":true,\"persistFolderPath\":\"vudwtiukbldng\",\"luns\":[2138211196,1997522468,655680628],\"defaultFilePath\":\"z\"},\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true,\"schedule\":{\"enable\":false,\"weeklyInterval\":2112033193,\"monthlyOccurrence\":2000492920,\"dayOfWeek\":\"Sunday\",\"startTime\":\"typmrbpizcdrqjsd\"}},\"enableAutomaticUpgrade\":true}") + "{\"virtualMachineResourceId\":\"myzydagfuaxbez\",\"provisioningState\":\"uokktwhrdxwz\",\"sqlImageOffer\":\"q\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"o\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeBootstrapCredentialPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorCredentialPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"xhqyudxorrqnb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Sunday\",\"maintenanceWindowStartingHour\":2041227856,\"maintenanceWindowDuration\":688230720},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":711383541,\"storageAccountUrl\":\"rm\",\"storageContainerName\":\"d\",\"storageAccessKey\":\"fakeAutoBackupStorageCredentialPlaceholder\",\"password\":\"fakeAutoBackupCredentialPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Monday\",\"Tuesday\",\"Sunday\"],\"fullBackupStartTime\":79438477,\"fullBackupWindowHours\":1785940860,\"logBackupFrequency\":1882721753},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"lhzdobp\",\"azureKeyVaultUrl\":\"mflbv\",\"servicePrincipalName\":\"chrkcciwwzjuqk\",\"servicePrincipalSecret\":\"fakeServicePrincipleSecretPlaceholder\"},\"serverConfigurationsManagementSettings\":{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PUBLIC\",\"port\":1163138760,\"sqlAuthUpdateUserName\":\"fakeSqlAuthUpdateUserNamePlaceholder\",\"sqlAuthUpdatePassword\":\"fakeSqlAuthUpdatePasswordPlaceholder\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":93185233,\"startingDeviceId\":499062312,\"diskConfigurationType\":\"NEW\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":true},\"sqlInstanceSettings\":{\"collation\":\"hocohslkev\",\"maxDop\":1452843037,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":1915206631,\"maxServerMemoryMB\":635098272,\"isLpimEnabled\":true,\"isIfiEnabled\":true}},\"storageConfigurationSettings\":{\"sqlDataSettings\":{\"luns\":[750094319,441262471],\"defaultFilePath\":\"ithlvmezyvshxm\"},\"sqlLogSettings\":{\"luns\":[2042967034,820071175,681165656],\"defaultFilePath\":\"igrxwburvjxxjn\"},\"sqlTempDbSettings\":{\"dataFileSize\":655244901,\"dataGrowth\":796522407,\"logFileSize\":1581089013,\"logGrowth\":1482419493,\"dataFileCount\":368872056,\"persistFolder\":true,\"persistFolderPath\":\"vudwtiukbldng\",\"luns\":[2138211196,1997522468,655680628],\"defaultFilePath\":\"z\"},\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true,\"schedule\":{\"enable\":false,\"weeklyInterval\":2112033193,\"monthlyOccurrence\":2000492920,\"dayOfWeek\":\"Sunday\",\"startTime\":\"typmrbpizcdrqjsd\"}},\"enableAutomaticUpgrade\":true}") .toObject(SqlVirtualMachineProperties.class); Assertions.assertEquals("myzydagfuaxbez", model.virtualMachineResourceId()); Assertions.assertEquals("q", model.sqlImageOffer()); @@ -79,7 +79,7 @@ public void testDeserialize() { Assertions.assertEquals("lhzdobp", model.keyVaultCredentialSettings().credentialName()); Assertions.assertEquals("mflbv", model.keyVaultCredentialSettings().azureKeyVaultUrl()); Assertions.assertEquals("chrkcciwwzjuqk", model.keyVaultCredentialSettings().servicePrincipalName()); - Assertions.assertEquals("sa", model.keyVaultCredentialSettings().servicePrincipalSecret()); + Assertions.assertEquals("fakeServicePrincipleSecretPlaceholder", model.keyVaultCredentialSettings().servicePrincipalSecret()); Assertions .assertEquals( ConnectivityType.PUBLIC, @@ -220,7 +220,7 @@ public void testSerialize() { .withCredentialName("lhzdobp") .withAzureKeyVaultUrl("mflbv") .withServicePrincipalName("chrkcciwwzjuqk") - .withServicePrincipalSecret("sa")) + .withServicePrincipalSecret("fakeServicePrincipleSecretPlaceholder")) .withServerConfigurationsManagementSettings( new ServerConfigurationsManagementSettings() .withSqlConnectivityUpdateSettings( @@ -317,7 +317,7 @@ public void testSerialize() { Assertions.assertEquals("lhzdobp", model.keyVaultCredentialSettings().credentialName()); Assertions.assertEquals("mflbv", model.keyVaultCredentialSettings().azureKeyVaultUrl()); Assertions.assertEquals("chrkcciwwzjuqk", model.keyVaultCredentialSettings().servicePrincipalName()); - Assertions.assertEquals("sa", model.keyVaultCredentialSettings().servicePrincipalSecret()); + Assertions.assertEquals("fakeServicePrincipleSecretPlaceholder", model.keyVaultCredentialSettings().servicePrincipalSecret()); Assertions .assertEquals( ConnectivityType.PUBLIC, From 93284333dee1064834cdc9468cd6ee14bb0ffc4f Mon Sep 17 00:00:00 2001 From: shafang Date: Wed, 26 Oct 2022 13:03:20 -0700 Subject: [PATCH 12/21] username now is a suppressio keyword --- .../credential/JavaDocCodeSnippets.java | 4 +- .../UsernamePasswordCredentialTest.java | 40 +++++++++---------- .../NotificationHookTestBase.java | 4 +- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java index 79da08546171..a3e9aa795a8e 100644 --- a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java +++ b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java @@ -26,7 +26,7 @@ public final class JavaDocCodeSnippets { private String tenantId = System.getenv("AZURE_TENANT_ID"); private String clientId = System.getenv("AZURE_CLIENT_ID"); private String clientSecret = System.getenv("AZURE_CLIENT_SECRET"); - private String fakeUserNamePlaceholder = "fakeNamePlaceholder"; + private String username = "username"; private String fakePasswordPlaceholder = "fakeCredentialPlaceholder"; /** @@ -80,7 +80,7 @@ public void chainedTokenCredentialCodeSnippets() { // BEGIN: com.azure.identity.credential.chainedtokencredential.construct UsernamePasswordCredential usernamePasswordCredential = new UsernamePasswordCredentialBuilder() .clientId(clientId) - .username(fakeUserNamePlaceholder) + .username(username) .password(fakePasswordPlaceholder) .build(); InteractiveBrowserCredential interactiveBrowserCredential = new InteractiveBrowserCredentialBuilder() diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index 8199e756915b..4717f3d63ecd 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -36,7 +36,7 @@ public class UsernamePasswordCredentialTest { @Test public void testValidUserCredential() throws Exception { // setup - String fakeUsernamePlaceholder = "fakeNamePlaceholder"; + String username = "username"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; String token2 = "token2"; @@ -47,7 +47,7 @@ public void testValidUserCredential() throws Exception { // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request1, fakeUsernamePlaceholder, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); + when(identityClient.authenticateWithUsernamePassword(request1, username, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> { TokenRequestContext argument = (TokenRequestContext) invocation.getArguments()[0]; @@ -62,7 +62,7 @@ public void testValidUserCredential() throws Exception { })) { // test UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).password(password).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).password(password).build(); StepVerifier.create(credential.getToken(request1)) .expectNextMatches(accessToken -> token1.equals(accessToken.getToken()) && expiresAt.getSecond() == accessToken.getExpiresAt().getSecond()) @@ -105,20 +105,20 @@ public void testValidUserCredential() throws Exception { @Test public void testInvalidUserCredential() throws Exception { // setup - String fakeUsernamePlaceholder = "fakeNamePlaceholder"; + String username = "username"; String badPassword = "Password"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); + when(identityClient.authenticateWithUsernamePassword(request, username, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); when(identityClient.getIdentityClientOptions()).thenReturn(new IdentityClientOptions()); })) { // test UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).password(badPassword).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).password(badPassword).build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(t -> t instanceof MsalServiceException && "bad credential".equals(t.getMessage())) .verify(); @@ -126,7 +126,7 @@ public void testInvalidUserCredential() throws Exception { } try (MockedConstruction identityClientMock = mockConstruction(IdentitySyncClient.class, (identitySyncClient, context) -> { - when(identitySyncClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); + when(identitySyncClient.authenticateWithUsernamePassword(request, username, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); when(identitySyncClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); when(identitySyncClient.getIdentityClientOptions()).thenReturn(new IdentityClientOptions()); @@ -146,7 +146,7 @@ public void testInvalidUserCredential() throws Exception { @Test public void testInvalidParameters() throws Exception { // setup - String fakeUsernamePlaceholder = "fakeNamePlaceholder"; + String username = "username"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -154,19 +154,19 @@ public void testInvalidParameters() throws Exception { // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresOn)); + when(identityClient.authenticateWithUsernamePassword(request, username, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresOn)); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); })) { // test try { - new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(password).build(); + new UsernamePasswordCredentialBuilder().username(username).password(password).build(); fail(); } catch (IllegalArgumentException e) { Assert.assertTrue(e.getMessage().contains("clientId")); } try { - new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).build(); fail(); } catch (IllegalArgumentException e) { Assert.assertTrue(e.getMessage().contains("password")); @@ -184,7 +184,7 @@ public void testInvalidParameters() throws Exception { @Test public void testValidAuthenticate() throws Exception { // setup - String fakeUsernamePlaceholder = "fakeNamePlaceholder"; + String username = "username"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -192,13 +192,13 @@ public void testValidAuthenticate() throws Exception { // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(eq(request1), eq(fakeUsernamePlaceholder), eq(password))) + when(identityClient.authenticateWithUsernamePassword(eq(request1), eq(username), eq(password))) .thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); })) { // test UsernamePasswordCredential credential = new UsernamePasswordCredentialBuilder().clientId(clientId) - .username(fakeUsernamePlaceholder).password(password).build(); + .username(username).password(password).build(); StepVerifier.create(credential.authenticate(request1)) .expectNextMatches(authenticationRecord -> authenticationRecord.getAuthority() .equals("http://login.microsoftonline.com") @@ -212,14 +212,14 @@ public void testValidAuthenticate() throws Exception { @Test public void testAdditionalTenantNoImpact() { // setup - String fakeUsernamePlaceholder = "fakeNamePlaceholder"; + String username = "username"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(password) + new UsernamePasswordCredentialBuilder().username(username).password(password) .clientId(clientId).additionallyAllowedTenants("RANDOM").build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(e -> e.getCause() instanceof MsalServiceException) @@ -229,14 +229,14 @@ public void testAdditionalTenantNoImpact() { @Test public void testInvalidMultiTenantAuth() { // setup - String fakeUsernamePlaceholder = "fakeNamePlaceholder"; + String username = "username"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().tenantId("tenant").username(fakeUsernamePlaceholder).password(password) + new UsernamePasswordCredentialBuilder().tenantId("tenant").username(username).password(password) .clientId(clientId).build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(e -> e instanceof ClientAuthenticationException && (e.getCause().getMessage().startsWith("The current credential is not configured to"))) @@ -246,14 +246,14 @@ public void testInvalidMultiTenantAuth() { @Test public void testValidMultiTenantAuth() { // setup - String fakeUsernamePlaceholder = "fakeNamePlaceholder"; + String username = "username"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(password).tenantId("tenant") + new UsernamePasswordCredentialBuilder().username(username).password(password).tenantId("tenant") .clientId(clientId).additionallyAllowedTenants(IdentityUtil.ALL_TENANTS).build(); StepVerifier.create(credential.getToken(request)) diff --git a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java index 2d2e746da35f..c393e056ca11 100644 --- a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java +++ b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java @@ -65,7 +65,7 @@ protected static class CreateWebHookInput { String endpoint = "https://httpbin.org/post"; String description = "alert_us!"; String externalLink = "https://github.com/Azure/azure-sdk-for-java/wiki"; - String fakeUserNamePlaceholder = "fakeUserNamePlaceholder"; + String username = "username"; String fakePasswordPlaceholder = "fakeCredentialPlaceholder"; HttpHeaders httpHeaders = new HttpHeaders() .put("x-contoso-id", "123") @@ -73,7 +73,7 @@ protected static class CreateWebHookInput { WebNotificationHook hook = new WebNotificationHook(name, endpoint) .setDescription(description) .setExternalLink(externalLink) - .setUserCredentials(fakeUserNamePlaceholder, fakePasswordPlaceholder) + .setUserCredentials(username, fakePasswordPlaceholder) .setHttpHeaders(httpHeaders); } From 106f4c6409e6bf6f0ec2bbd9938667f8261746d4 Mon Sep 17 00:00:00 2001 From: shafang Date: Wed, 26 Oct 2022 16:01:52 -0700 Subject: [PATCH 13/21] Fix compiling errors --- .../devcenter/generated/NetworkConnectionInnerTests.java | 2 +- ...tomAnalyzerSyncTests.canCreateAllAnalysisComponents.json | 4 ++-- .../IndexingSyncTests.canIndexWithPascalCaseFields.json | 4 ++-- ...s.canGetStaticallyTypedDocumentWithPascalCaseFields.json | 4 ++-- .../SearchSyncTests.canFilterNonNullableType.json | 6 +++--- .../SearchSyncTests.canRoundTripNonNullableValueTypes.json | 6 +++--- .../generated/SqlVirtualMachinesCreateOrUpdateTests.java | 3 ++- .../java/com/azure/storage/blob/FakeCredentialInTest.groovy | 2 +- .../com/azure/storage/blob/specialized/HelperTest.groovy | 1 + 9 files changed, 17 insertions(+), 15 deletions(-) diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java index a246c53549eb..4e5bf6599f8f 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java @@ -18,7 +18,7 @@ public void testDeserialize() { NetworkConnectionInner model = BinaryData .fromString( - "{\"properties\":{\"provisioningState\":\"f\",\"healthCheckStatus\":\"Warning\",\"networkingResourceGroupName\":\"bfvoowvrv\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"jqppyostronzmy\",\"domainName\":\"fipns\",\"organizationUnit\":\"mcwaekrrjr\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"glikkxwslolb\"},\"location\":\"vuzlm\",\"tags\":{\"noigbrnjwmwk\":\"lfktgplcrpwjxe\"},\"id\":\"nbsazejjoqkag\",\"name\":\"hsxttaugzxnf\",\"type\":\"azpxdtnkdmkqjjl\"}") + "{\"properties\":{\"provisioningState\":\"f\",\"healthCheckStatus\":\"Warning\",\"networkingResourceGroupName\":\"bfvoowvrv\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"jqppyostronzmy\",\"domainName\":\"fipns\",\"organizationUnit\":\"mcwaekrrjr\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"vuzlm\",\"tags\":{\"noigbrnjwmwk\":\"lfktgplcrpwjxe\"},\"id\":\"nbsazejjoqkag\",\"name\":\"hsxttaugzxnf\",\"type\":\"azpxdtnkdmkqjjl\"}") .toObject(NetworkConnectionInner.class); Assertions.assertEquals("vuzlm", model.location()); Assertions.assertEquals("lfktgplcrpwjxe", model.tags().get("noigbrnjwmwk")); diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canCreateAllAnalysisComponents.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canCreateAllAnalysisComponents.json index bd357bf42cd1..831dbeb30bba 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canCreateAllAnalysisComponents.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canCreateAllAnalysisComponents.json @@ -21,7 +21,7 @@ "elapsed-time" : "1759", "OData-Version" : "4.0", "Expires" : "-1", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D94633A56612B5\\\"\",\"name\":\"hotelscancreateallanalysiscomponents60e349463ae36c8751\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"City\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"StateProvince\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Country\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"PostalCode\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.25,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet05645b1bd4a\",\"tokenizer\":\"my_tokenizer\",\"tokenFilters\":[\"my_tokenfilter\"],\"charFilters\":[\"my_charfilter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet05355e2ebd5\",\"tokenizer\":\"edgeNGram\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet80863aef9cf\",\"lowercase\":false,\"pattern\":\"abc\",\"flags\":\"DOTALL\",\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardAnalyzer\",\"name\":\"azsmnet93032858785\",\"maxTokenLength\":100,\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"azsmnet265432f539f\",\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"azsmnet38045f85b44\",\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"my_tokenizer\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"azsmnet366843a491a\",\"minGram\":2,\"maxGram\":4,\"tokenChars\":[\"letter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenizer\",\"name\":\"azsmnet445336c6a42\",\"minGram\":2,\"maxGram\":4,\"tokenChars\":[\"letter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.ClassicTokenizer\",\"name\":\"azsmnet430374ecf54\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordTokenizerV2\",\"name\":\"azsmnet45737ae4c0e\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet18695841da2\",\"maxTokenLength\":100,\"isSearchTokenizer\":true,\"language\":\"croatian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageTokenizer\",\"name\":\"azsmnet3966376ea78\",\"maxTokenLength\":100,\"isSearchTokenizer\":true,\"language\":\"thai\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PathHierarchyTokenizerV2\",\"name\":\"azsmnet338159ad337\",\"delimiter\":\":\",\"replacement\":\"_\",\"maxTokenLength\":300,\"reverse\":true,\"skip\":2},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet063115a8fa4\",\"pattern\":\".*\",\"flags\":\"MULTILINE\",\"group\":0},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardTokenizerV2\",\"name\":\"azsmnet28648d1ff38\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.UaxUrlEmailTokenizer\",\"name\":\"azsmnet24207efff61\",\"maxTokenLength\":100}],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"my_tokenfilter\",\"ignoreScripts\":[],\"outputUnigrams\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet91120ce57df\",\"ignoreScripts\":[\"han\"],\"outputUnigrams\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet44479216943\",\"ignoreScripts\":[],\"outputUnigrams\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.AsciiFoldingTokenFilter\",\"name\":\"azsmnet3515975dfc3\",\"preserveOriginal\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.AsciiFoldingTokenFilter\",\"name\":\"azsmnet81377ec6617\",\"preserveOriginal\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.CommonGramTokenFilter\",\"name\":\"azsmnet20391a96cb3\",\"commonWords\":[\"hello\",\"goodbye\"],\"ignoreCase\":true,\"queryMode\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.CommonGramTokenFilter\",\"name\":\"azsmnet92280a9aebb\",\"commonWords\":[\"at\"],\"ignoreCase\":false,\"queryMode\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter\",\"name\":\"azsmnet19475bc6b2e\",\"wordList\":[\"Schadenfreude\"],\"minWordSize\":10,\"minSubwordSize\":5,\"maxSubwordSize\":13,\"onlyLongestMatch\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"azsmnet12467a6a243\",\"minGram\":2,\"maxGram\":10,\"side\":\"back\"},{\"@odata.type\":\"#Microsoft.Azure.Search.ElisionTokenFilter\",\"name\":\"azsmnet05717793892\",\"articles\":[\"a\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.ElisionTokenFilter\",\"name\":\"azsmnet7113459606c\",\"articles\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.KeepTokenFilter\",\"name\":\"azsmnet0274352ad9f\",\"keepWords\":[\"aloha\"],\"keepWordsCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeepTokenFilter\",\"name\":\"azsmnet012873f6a74\",\"keepWords\":[\"e\",\"komo\",\"mai\"],\"keepWordsCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordMarkerTokenFilter\",\"name\":\"azsmnet66896680dc2\",\"keywords\":[\"key\",\"words\"],\"ignoreCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordMarkerTokenFilter\",\"name\":\"azsmnet27693e8ae80\",\"keywords\":[\"essential\"],\"ignoreCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.LengthTokenFilter\",\"name\":\"azsmnet03652742914\",\"min\":5,\"max\":10},{\"@odata.type\":\"#Microsoft.Azure.Search.LimitTokenFilter\",\"name\":\"azsmnet9395391834b\",\"maxTokenCount\":10,\"consumeAllTokens\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenFilterV2\",\"name\":\"azsmnet730073baf23\",\"minGram\":2,\"maxGram\":3},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternCaptureTokenFilter\",\"name\":\"azsmnet1211023410b\",\"patterns\":[\".*\"],\"preserveOriginal\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceTokenFilter\",\"name\":\"azsmnet08306fdb9b4\",\"pattern\":\"abc\",\"replacement\":\"123\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet68615d781fe\",\"encoder\":\"soundex\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.ShingleTokenFilter\",\"name\":\"azsmnet04760245f50\",\"maxShingleSize\":10,\"minShingleSize\":5,\"outputUnigrams\":false,\"outputUnigramsIfNoShingles\":true,\"tokenSeparator\":\" \",\"filterToken\":\"|\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet62487318767\",\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerOverrideTokenFilter\",\"name\":\"azsmnet491828d638b\",\"rules\":[\"ran => run\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet361901ec162\",\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet2862096a288\",\"stopwords\":[\"a\",\"the\"],\"stopwordsList\":null,\"ignoreCase\":true,\"removeTrailing\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet53981c3dfd8\",\"stopwords\":[],\"stopwordsList\":\"italian\",\"ignoreCase\":true,\"removeTrailing\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.SynonymTokenFilter\",\"name\":\"azsmnet578867ad542\",\"synonyms\":[\"great, good\"],\"ignoreCase\":true,\"expand\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.TruncateTokenFilter\",\"name\":\"azsmnet1715223af27\",\"length\":10},{\"@odata.type\":\"#Microsoft.Azure.Search.UniqueTokenFilter\",\"name\":\"azsmnet44066b1dc32\",\"onlyOnSamePosition\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.UniqueTokenFilter\",\"name\":\"azsmnet64616673281\",\"onlyOnSamePosition\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.WordDelimiterTokenFilter\",\"name\":\"azsmnet80254254f2a\",\"generateWordParts\":false,\"generateNumberParts\":false,\"catenateWords\":true,\"catenateNumbers\":true,\"catenateAll\":true,\"splitOnCaseChange\":false,\"preserveOriginal\":true,\"splitOnNumerics\":false,\"stemEnglishPossessive\":false,\"protectedWords\":[\"protected\"]}],\"charFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.MappingCharFilter\",\"name\":\"my_charfilter\",\"mappings\":[\"a => b\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.MappingCharFilter\",\"name\":\"azsmnet59220c33507\",\"mappings\":[\"s => $\",\"S => $\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceCharFilter\",\"name\":\"azsmnet31502707a82\",\"pattern\":\"abc\",\"replacement\":\"123\"}],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D94633A56612B5\\\"\",\"name\":\"hotelscancreateallanalysiscomponents60e349463ae36c8751\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"City\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"StateProvince\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Country\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"PostalCode\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.25,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet05645b1bd4a\",\"tokenizer\":\"my_tokenizer\",\"tokenFilters\":[\"my_tokenfilter\"],\"charFilters\":[\"my_charfilter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet05355e2ebd5\",\"tokenizer\":\"edgeNGram\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet80863aef9cf\",\"lowercase\":false,\"pattern\":\"abc\",\"flags\":\"DOTALL\",\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardAnalyzer\",\"name\":\"azsmnet93032858785\",\"maxTokenLength\":100,\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"azsmnet265432f539f\",\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"azsmnet38045f85b44\",\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"my_tokenizer\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"azsmnet366843a491a\",\"minGram\":2,\"maxGram\":4,\"tokenChars\":[\"letter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenizer\",\"name\":\"azsmnet445336c6a42\",\"minGram\":2,\"maxGram\":4,\"tokenChars\":[\"letter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.ClassicTokenizer\",\"name\":\"azsmnet430374ecf54\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordTokenizerV2\",\"name\":\"azsmnet45737ae4c0e\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet18695841da2\",\"maxTokenLength\":100,\"isSearchTokenizer\":true,\"language\":\"croatian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageTokenizer\",\"name\":\"azsmnet3966376ea78\",\"maxTokenLength\":100,\"isSearchTokenizer\":true,\"language\":\"thai\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PathHierarchyTokenizerV2\",\"name\":\"azsmnet338159ad337\",\"delimiter\":\":\",\"replacement\":\"_\",\"maxTokenLength\":300,\"reverse\":true,\"skip\":2},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet063115a8fa4\",\"pattern\":\".*\",\"flags\":\"MULTILINE\",\"group\":0},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardTokenizerV2\",\"name\":\"azsmnet28648d1ff38\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.UaxUrlEmailTokenizer\",\"name\":\"azsmnet24207efff61\",\"maxTokenLength\":100}],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"my_tokenfilter\",\"ignoreScripts\":[],\"outputUnigrams\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet91120ce57df\",\"ignoreScripts\":[\"han\"],\"outputUnigrams\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet44479216943\",\"ignoreScripts\":[],\"outputUnigrams\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.AsciiFoldingTokenFilter\",\"name\":\"azsmnet3515975dfc3\",\"preserveOriginal\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.AsciiFoldingTokenFilter\",\"name\":\"azsmnet81377ec6617\",\"preserveOriginal\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.CommonGramTokenFilter\",\"name\":\"azsmnet20391a96cb3\",\"commonWords\":[\"hello\",\"goodbye\"],\"ignoreCase\":true,\"queryMode\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.CommonGramTokenFilter\",\"name\":\"azsmnet92280a9aebb\",\"commonWords\":[\"at\"],\"ignoreCase\":false,\"queryMode\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter\",\"name\":\"azsmnet19475bc6b2e\",\"wordList\":[\"Schadenfreude\"],\"minWordSize\":10,\"minSubwordSize\":5,\"maxSubwordSize\":13,\"onlyLongestMatch\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"azsmnet12467a6a243\",\"minGram\":2,\"maxGram\":10,\"side\":\"back\"},{\"@odata.type\":\"#Microsoft.Azure.Search.ElisionTokenFilter\",\"name\":\"azsmnet05717793892\",\"articles\":[\"a\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.ElisionTokenFilter\",\"name\":\"azsmnet7113459606c\",\"articles\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.KeepTokenFilter\",\"name\":\"azsmnet0274352ad9f\",\"keepWords\":[\"aloha\"],\"keepWordsCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeepTokenFilter\",\"name\":\"azsmnet012873f6a74\",\"keepWords\":[\"e\",\"komo\",\"mai\"],\"keepWordsCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordMarkerTokenFilter\",\"name\":\"azsmnet66896680dc2\",\"keywords\":[\"key\",\"words\"],\"ignoreCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordMarkerTokenFilter\",\"name\":\"azsmnet27693e8ae80\",\"keywords\":[\"essential\"],\"ignoreCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.LengthTokenFilter\",\"name\":\"azsmnet03652742914\",\"min\":5,\"max\":10},{\"@odata.type\":\"#Microsoft.Azure.Search.LimitTokenFilter\",\"name\":\"azsmnet9395391834b\",\"maxTokenCount\":10,\"consumeAllTokens\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenFilterV2\",\"name\":\"azsmnet730073baf23\",\"minGram\":2,\"maxGram\":3},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternCaptureTokenFilter\",\"name\":\"azsmnet1211023410b\",\"patterns\":[\".*\"],\"preserveOriginal\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceTokenFilter\",\"name\":\"azsmnet08306fdb9b4\",\"pattern\":\"abc\",\"replacement\":\"132\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet68615d781fe\",\"encoder\":\"soundex\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.ShingleTokenFilter\",\"name\":\"azsmnet04760245f50\",\"maxShingleSize\":10,\"minShingleSize\":5,\"outputUnigrams\":false,\"outputUnigramsIfNoShingles\":true,\"tokenSeparator\":\" \",\"filterToken\":\"|\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet62487318767\",\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerOverrideTokenFilter\",\"name\":\"azsmnet491828d638b\",\"rules\":[\"ran => run\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet361901ec162\",\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet2862096a288\",\"stopwords\":[\"a\",\"the\"],\"stopwordsList\":null,\"ignoreCase\":true,\"removeTrailing\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet53981c3dfd8\",\"stopwords\":[],\"stopwordsList\":\"italian\",\"ignoreCase\":true,\"removeTrailing\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.SynonymTokenFilter\",\"name\":\"azsmnet578867ad542\",\"synonyms\":[\"great, good\"],\"ignoreCase\":true,\"expand\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.TruncateTokenFilter\",\"name\":\"azsmnet1715223af27\",\"length\":10},{\"@odata.type\":\"#Microsoft.Azure.Search.UniqueTokenFilter\",\"name\":\"azsmnet44066b1dc32\",\"onlyOnSamePosition\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.UniqueTokenFilter\",\"name\":\"azsmnet64616673281\",\"onlyOnSamePosition\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.WordDelimiterTokenFilter\",\"name\":\"azsmnet80254254f2a\",\"generateWordParts\":false,\"generateNumberParts\":false,\"catenateWords\":true,\"catenateNumbers\":true,\"catenateAll\":true,\"splitOnCaseChange\":false,\"preserveOriginal\":true,\"splitOnNumerics\":false,\"stemEnglishPossessive\":false,\"protectedWords\":[\"protected\"]}],\"charFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.MappingCharFilter\",\"name\":\"my_charfilter\",\"mappings\":[\"a => b\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.MappingCharFilter\",\"name\":\"azsmnet59220c33507\",\"mappings\":[\"s => $\",\"S => $\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceCharFilter\",\"name\":\"azsmnet31502707a82\",\"pattern\":\"abc\",\"replacement\":\"132\"}],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", "x-ms-client-request-id" : "e47aa0a8-691d-4d61-b672-2ce41d16ee86", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", @@ -228,4 +228,4 @@ "Exception" : null } ], "variables" : [ "hotelscancreateallanalysiscomponents60e349463ae36c8751", "azsmnet05645b1bd4a", "azsmnet05355e2ebd5", "azsmnet80863aef9cf", "azsmnet93032858785", "azsmnet265432f539f", "azsmnet38045f85b44", "azsmnet366843a491a", "azsmnet445336c6a42", "azsmnet430374ecf54", "azsmnet45737ae4c0e", "azsmnet18695841da2", "azsmnet3966376ea78", "azsmnet338159ad337", "azsmnet063115a8fa4", "azsmnet28648d1ff38", "azsmnet24207efff61", "azsmnet91120ce57df", "azsmnet44479216943", "azsmnet3515975dfc3", "azsmnet81377ec6617", "azsmnet20391a96cb3", "azsmnet92280a9aebb", "azsmnet19475bc6b2e", "azsmnet12467a6a243", "azsmnet05717793892", "azsmnet7113459606c", "azsmnet0274352ad9f", "azsmnet012873f6a74", "azsmnet66896680dc2", "azsmnet27693e8ae80", "azsmnet03652742914", "azsmnet9395391834b", "azsmnet730073baf23", "azsmnet1211023410b", "azsmnet08306fdb9b4", "azsmnet68615d781fe", "azsmnet04760245f50", "azsmnet62487318767", "azsmnet491828d638b", "azsmnet361901ec162", "azsmnet2862096a288", "azsmnet53981c3dfd8", "azsmnet578867ad542", "azsmnet1715223af27", "azsmnet44066b1dc32", "azsmnet64616673281", "azsmnet80254254f2a", "azsmnet59220c33507", "azsmnet31502707a82", "hotelscancreateallanalysiscomponents60e11387066ad4ecdd", "hotelscancreateallanalysiscomponents60e669612dbc759a2a", "hotelscancreateallanalysiscomponents60e1726466389316d2", "hotelscancreateallanalysiscomponents60e82579578a97bbe3", "hotelscancreateallanalysiscomponents60e20687d142850005", "hotelscancreateallanalysiscomponents60e01873da9901d956", "hotelscancreateallanalysiscomponents60e9563090f2ba235e" ] -} \ No newline at end of file +} diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexWithPascalCaseFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexWithPascalCaseFields.json index 99be665aafc1..dd875e26f080 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexWithPascalCaseFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexWithPascalCaseFields.json @@ -49,7 +49,7 @@ "elapsed-time" : "90", "OData-Version" : "4.0", "Expires" : "-1", - "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", + "Body" : "{\"value\":[{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", "x-ms-client-request-id" : "453b8a6e-5960-4a71-aef8-0b247130116e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" @@ -104,4 +104,4 @@ "Exception" : null } ], "variables" : [ "bookscanindexwithpascalcasefields49361203a9a1a1714bb" ] -} \ No newline at end of file +} diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json index dbed78c31227..052ecc1ea117 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json @@ -49,7 +49,7 @@ "elapsed-time" : "91", "OData-Version" : "4.0", "Expires" : "-1", - "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", + "Body" : "{\"value\":[{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", "x-ms-client-request-id" : "87b96fe5-0107-4a5e-8271-0eb35290d5c1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" @@ -104,4 +104,4 @@ "Exception" : null } ], "variables" : [ "hotelscangetstaticallytypeddocumentwithpascalcasefields53937503" ] -} \ No newline at end of file +} diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilterNonNullableType.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilterNonNullableType.json index 436b9f8296b9..9c215ac39783 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilterNonNullableType.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilterNonNullableType.json @@ -49,7 +49,7 @@ "elapsed-time" : "98", "OData-Version" : "4.0", "Expires" : "-1", - "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"789\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", + "Body" : "{\"value\":[{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"789\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", "x-ms-client-request-id" : "8e32f2dc-f607-4298-b7db-a1b68b642ad4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" @@ -76,7 +76,7 @@ "elapsed-time" : "77", "OData-Version" : "4.0", "Expires" : "-1", - "Body" : "{\"value\":[{\"@search.score\":1.0,\"Key\":\"123\",\"IntValue\":0,\"Bucket\":{\"BucketName\":\"A\",\"Count\":3}},{\"@search.score\":1.0,\"Key\":\"456\",\"IntValue\":7,\"Bucket\":{\"BucketName\":\"B\",\"Count\":5}}]}", + "Body" : "{\"value\":[{\"@search.score\":1.0,\"Key\":\"132\",\"IntValue\":0,\"Bucket\":{\"BucketName\":\"A\",\"Count\":3}},{\"@search.score\":1.0,\"Key\":\"456\",\"IntValue\":7,\"Bucket\":{\"BucketName\":\"B\",\"Count\":5}}]}", "x-ms-client-request-id" : "106cb4f5-810e-4a6e-b357-c23f91772b1a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" @@ -105,4 +105,4 @@ "Exception" : null } ], "variables" : [ "testindexcanfilternonnullabletype30e783376dc0a79cad8" ] -} \ No newline at end of file +} diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canRoundTripNonNullableValueTypes.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canRoundTripNonNullableValueTypes.json index 7599037ce96d..27509064c81d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canRoundTripNonNullableValueTypes.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canRoundTripNonNullableValueTypes.json @@ -49,7 +49,7 @@ "elapsed-time" : "108", "OData-Version" : "4.0", "Expires" : "-1", - "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", + "Body" : "{\"value\":[{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", "x-ms-client-request-id" : "0a2e2392-d3b3-4d90-acba-462970a20f2c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" @@ -76,7 +76,7 @@ "elapsed-time" : "89", "OData-Version" : "4.0", "Expires" : "-1", - "Body" : "{\"value\":[{\"@search.score\":1.0,\"Key\":\"123\",\"Rating\":5,\"Count\":3,\"IsEnabled\":true,\"Ratio\":3.25,\"StartDate\":\"2010-05-31T23:00:00Z\",\"EndDate\":\"2010-05-31T23:00:00Z\",\"TopLevelBucket\":{\"BucketName\":\"A\",\"Count\":12},\"Buckets\":[{\"BucketName\":\"B\",\"Count\":20},{\"BucketName\":\"C\",\"Count\":7}]},{\"@search.score\":1.0,\"Key\":\"456\",\"Rating\":0,\"Count\":0,\"IsEnabled\":false,\"Ratio\":0.0,\"StartDate\":null,\"EndDate\":null,\"TopLevelBucket\":null,\"Buckets\":[]}]}", + "Body" : "{\"value\":[{\"@search.score\":1.0,\"Key\":\"132\",\"Rating\":5,\"Count\":3,\"IsEnabled\":true,\"Ratio\":3.25,\"StartDate\":\"2010-05-31T23:00:00Z\",\"EndDate\":\"2010-05-31T23:00:00Z\",\"TopLevelBucket\":{\"BucketName\":\"A\",\"Count\":12},\"Buckets\":[{\"BucketName\":\"B\",\"Count\":20},{\"BucketName\":\"C\",\"Count\":7}]},{\"@search.score\":1.0,\"Key\":\"456\",\"Rating\":0,\"Count\":0,\"IsEnabled\":false,\"Ratio\":0.0,\"StartDate\":null,\"EndDate\":null,\"TopLevelBucket\":null,\"Buckets\":[]}]}", "x-ms-client-request-id" : "ece8a1a3-5123-4e36-b6b5-f87635289767", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" @@ -105,4 +105,4 @@ "Exception" : null } ], "variables" : [ "non-nullable-indexcanroundtripnonnullablevaluetypesed4379573c" ] -} \ No newline at end of file +} diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java index 202364c40307..c213707fa6a8 100644 --- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java +++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java @@ -149,7 +149,8 @@ public void testCreateOrUpdate() throws Exception { Assertions.assertEquals(LeastPrivilegeMode.ENABLED, response.leastPrivilegeMode()); Assertions.assertEquals(SqlImageSku.WEB, response.sqlImageSku()); Assertions.assertEquals("mtdaa", response.sqlVirtualMachineGroupResourceId()); - Assertions.assertEquals("v", response.wsfcDomainCredentials().clusterBootstrapAccountPassword()); + Assertions.assertEquals("fakeClusterBootstrapAccountPasswordPlaceholder", + response.wsfcDomainCredentials().clusterBootstrapAccountPassword()); Assertions.assertEquals("fakeOperatorAccountPasswordPlaceholder", response.wsfcDomainCredentials().clusterOperatorAccountPassword()); Assertions.assertEquals("fakeSqlServiceAccountPasswordPlaceholder", diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.groovy b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.groovy index 5ca926c3122f..6559e70d7034 100644 --- a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.groovy +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.groovy @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -package com.azure.storage.blob; +package com.azure.storage.blob /** * Fake credential shared in Tests diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/specialized/HelperTest.groovy b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/specialized/HelperTest.groovy index d9c337e5b97a..e85b386f4f4c 100644 --- a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/specialized/HelperTest.groovy +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/specialized/HelperTest.groovy @@ -9,6 +9,7 @@ import com.azure.core.util.serializer.SerializerEncoding import com.azure.storage.blob.APISpec import com.azure.storage.blob.BlobContainerAsyncClient import com.azure.storage.blob.BlobUrlParts +import com.azure.storage.blob.FakeCredentialInTest import com.azure.storage.blob.implementation.util.BlobSasImplUtil import com.azure.storage.blob.models.BlobRange import com.azure.storage.blob.models.PageList From 5fa38aa84f30159e422c48de8a27f460d419d1fe Mon Sep 17 00:00:00 2001 From: shafang Date: Wed, 26 Oct 2022 16:46:16 -0700 Subject: [PATCH 14/21] more missing fix --- .../java/com/azure/identity/UsernamePasswordCredentialTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index 4717f3d63ecd..f6301f1d1bac 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -202,7 +202,7 @@ public void testValidAuthenticate() throws Exception { StepVerifier.create(credential.authenticate(request1)) .expectNextMatches(authenticationRecord -> authenticationRecord.getAuthority() .equals("http://login.microsoftonline.com") - && authenticationRecord.getUsername().equals("fakeNamePlaceholder") + && authenticationRecord.getUsername().equals("username") && authenticationRecord.getHomeAccountId() != null) .verifyComplete(); Assert.assertNotNull(identityClientMock); From 986c152209822a0f7221f39323d8841c938a0594 Mon Sep 17 00:00:00 2001 From: shafang Date: Thu, 27 Oct 2022 16:06:03 -0700 Subject: [PATCH 15/21] Fixed MetrixAdvisor analyze failure --- .../identity/UsernamePasswordCredentialTest.java | 16 ++++++++-------- .../azure-ai-metricsadvisor/CHANGELOG.md | 10 ++++++++++ 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index f6301f1d1bac..4b12ff58c0f9 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -36,7 +36,7 @@ public class UsernamePasswordCredentialTest { @Test public void testValidUserCredential() throws Exception { // setup - String username = "username"; + String username = "testuser"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; String token2 = "token2"; @@ -105,7 +105,7 @@ public void testValidUserCredential() throws Exception { @Test public void testInvalidUserCredential() throws Exception { // setup - String username = "username"; + String username = "testuser"; String badPassword = "Password"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -146,7 +146,7 @@ public void testInvalidUserCredential() throws Exception { @Test public void testInvalidParameters() throws Exception { // setup - String username = "username"; + String username = "testuser"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -184,7 +184,7 @@ public void testInvalidParameters() throws Exception { @Test public void testValidAuthenticate() throws Exception { // setup - String username = "username"; + String username = "testuser"; String password = "fakeCredentialPlaceholder"; String token1 = "token1"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -202,7 +202,7 @@ public void testValidAuthenticate() throws Exception { StepVerifier.create(credential.authenticate(request1)) .expectNextMatches(authenticationRecord -> authenticationRecord.getAuthority() .equals("http://login.microsoftonline.com") - && authenticationRecord.getUsername().equals("username") + && authenticationRecord.getUsername().equals("testuser") && authenticationRecord.getHomeAccountId() != null) .verifyComplete(); Assert.assertNotNull(identityClientMock); @@ -212,7 +212,7 @@ public void testValidAuthenticate() throws Exception { @Test public void testAdditionalTenantNoImpact() { // setup - String username = "username"; + String username = "testuser"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") @@ -229,7 +229,7 @@ public void testAdditionalTenantNoImpact() { @Test public void testInvalidMultiTenantAuth() { // setup - String username = "username"; + String username = "testuser"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") @@ -246,7 +246,7 @@ public void testInvalidMultiTenantAuth() { @Test public void testValidMultiTenantAuth() { // setup - String username = "username"; + String username = "testuser"; String password = "fakeCredentialPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") diff --git a/sdk/metricsadvisor/azure-ai-metricsadvisor/CHANGELOG.md b/sdk/metricsadvisor/azure-ai-metricsadvisor/CHANGELOG.md index d866c2bca1ba..bad43055be3c 100644 --- a/sdk/metricsadvisor/azure-ai-metricsadvisor/CHANGELOG.md +++ b/sdk/metricsadvisor/azure-ai-metricsadvisor/CHANGELOG.md @@ -1,5 +1,15 @@ # Release History +## 1.2.0-beta.1 (Unreleased) + +### Features Added + +### Breaking Changes + +### Bugs Fixed + +### Other Changes + ## 1.1.8 (2022-10-12) ### Other Changes From 6a267bbe3e81b340a7804c1a2f0885af46d4b724 Mon Sep 17 00:00:00 2001 From: shafang Date: Thu, 27 Oct 2022 21:03:05 -0700 Subject: [PATCH 16/21] update search record json file --- ...sts.canGetStaticallyTypedDocumentWithPascalCaseFields.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json index 052ecc1ea117..93f2ce60f08b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json @@ -57,7 +57,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefields53937503')/docs('123')?api-version=2021-04-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefields53937503')/docs('132')?api-version=2021-04-30-Preview", "Headers" : { "User-Agent" : "azsdk-java-azure-search-documents/11.5.0-beta.1 (11.0.6; Windows 10; 10.0)", "x-ms-client-request-id" : "b6b98add-4df6-4aa0-a91b-ca8165579692" @@ -75,7 +75,7 @@ "elapsed-time" : "73", "OData-Version" : "4.0", "Expires" : "-1", - "Body" : "{\"HotelId\":\"123\",\"HotelName\":\"Lord of the Rings\",\"Description\":\"J.R.R\",\"Description_fr\":\"Tolkien\",\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}", + "Body" : "{\"HotelId\":\"132\",\"HotelName\":\"Lord of the Rings\",\"Description\":\"J.R.R\",\"Description_fr\":\"Tolkien\",\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}", "x-ms-client-request-id" : "b6b98add-4df6-4aa0-a91b-ca8165579692", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" From 49d57b00b6023d11002c63c7f11088dadd2a1d4b Mon Sep 17 00:00:00 2001 From: shafang Date: Fri, 28 Oct 2022 13:43:05 -0700 Subject: [PATCH 17/21] remove more suppressions and test --- eng/CredScanSuppression.json | 23 +++++-- .../generated/RegistryInfoTests.java | 8 +-- .../communication/identity/CteTestHelper.java | 4 +- .../NetworkConnectionInnerTests.java | 8 +-- .../NetworkConnectionListResultTests.java | 2 +- .../NetworkConnectionUpdateTests.java | 8 +-- ...orkConnectionsCreateOrUpdateMockTests.java | 6 +- ...nnectionsListByResourceGroupMockTests.java | 4 +- .../NetworkConnectionsListMockTests.java | 4 +- .../generated/NetworkPropertiesTests.java | 8 +-- .../eventhubs/models/ProxyOptionsTest.java | 34 +++++------ .../HttpProxyConfigPasswordTests.java | 8 +-- .../generated/HttpProxyConfigTests.java | 14 ++--- ...nedClustersPropertiesWithSecretsTests.java | 32 +++++----- .../generated/ProvisionedClustersTests.java | 38 ++++++------ .../WindowsProfilePasswordTests.java | 8 +-- .../generated/WindowsProfileTests.java | 14 ++--- .../credential/JavaDocCodeSnippets.java | 6 +- .../UsernamePasswordCredentialTest.java | 60 +++++++++---------- .../KeyVaultCredentialPolicyTest.java | 2 +- .../certificates/CertificateAsyncClient.java | 4 +- ...ificateAsyncClientJavaDocCodeSnippets.java | 4 +- .../CertificateClientTestBase.java | 6 +- .../KeyVaultCredentialPolicyTest.java | 2 +- .../keys/KeyVaultCredentialPolicyTest.java | 2 +- .../keyvault/secrets/HelloWorldAsync.java | 4 +- .../keyvault/secrets/ListOperations.java | 6 +- .../secrets/KeyVaultCredentialPolicyTest.java | 2 +- .../test/CertificateOperationsTest.java | 8 +-- .../SAMPLE.md | 2 +- .../NotificationHookTestBase.java | 2 +- .../dns/samples/ManageDns.java | 4 +- ...ManagedClustersResetAadProfileSamples.java | 2 +- .../TestResourceStreaming.java | 2 +- .../TestVirtualMachineDataDisk.java | 2 +- .../TestVirtualMachineSizes.java | 2 +- sdk/resourcemanager/docs/SAMPLE.md | 2 +- .../TestResourceStreaming.java | 2 +- .../TestVirtualMachineDataDisk.java | 2 +- .../TestVirtualMachineSizes.java | 2 +- .../indexes/DataSourceSyncTests.java | 2 +- .../SearchIndexClientBuilderTests.java | 2 +- .../servicelinker/CreateServiceLinker.java | 2 +- ...bstractAzureServiceConfigurationTests.java | 2 +- .../generated/AutoBackupSettingsTests.java | 14 ++--- ...ConfigurationsManagementSettingsTests.java | 14 ++--- .../SqlConnectivityUpdateSettingsTests.java | 14 ++--- ...SqlVirtualMachineGroupPropertiesTests.java | 8 +-- ...rtualMachineGroupsCreateOrUpdateTests.java | 6 +- ...MachineGroupsListByResourceGroupTests.java | 4 +- .../SqlVirtualMachineGroupsListTests.java | 4 +- .../SqlVirtualMachineInnerTests.java | 8 +-- ...SqlVirtualMachinesCreateOrUpdateTests.java | 6 +- ...rtualMachinesListByResourceGroupTests.java | 4 +- ...lVirtualMachinesListBySqlVmGroupTests.java | 4 +- .../SqlVirtualMachinesListTests.java | 4 +- 56 files changed, 233 insertions(+), 218 deletions(-) diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index 502e54562a60..e1a9a6728de0 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -3,16 +3,13 @@ "suppressions": [ { "placeholder": [ - "secret=", "serverappsecret" ], "_justification": "Secret used by test code, it is fake." }, { "placeholder": [ - "username", - "-----BEGIN PRIVATE KEY-----", - "administratorLoginPassword" + "-----BEGIN PRIVATE KEY-----" ], "_justification": "Well known names." }, @@ -67,6 +64,24 @@ "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy" ], "_justification": "File contains fake key used by test code." + }, + { + "file": [ + "sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/ConfigurationClientCredentials.java" + ], + "_justification": "File contains keyword 'secret='." + }, + { + "file": [ + "sdk/core/azure-core/src/main/java/com/azure/core/http/ProxyOptions.java" + ], + "_justification": "File contains User Login Credentials." + }, + { + "file": [ + "sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json" + ], + "_justification": "File contains General Password, such as 'administratorLoginPassword'." } ] } diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/test/java/com/azure/resourcemanager/appcontainers/generated/RegistryInfoTests.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/test/java/com/azure/resourcemanager/appcontainers/generated/RegistryInfoTests.java index 38355550578a..d17152ba628e 100644 --- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/test/java/com/azure/resourcemanager/appcontainers/generated/RegistryInfoTests.java +++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/test/java/com/azure/resourcemanager/appcontainers/generated/RegistryInfoTests.java @@ -15,11 +15,11 @@ public void testDeserialize() { RegistryInfo model = BinaryData .fromString( - "{\"registryUrl\":\"fakeUrlPlaceholder\",\"registryUserName\":\"fakeNamePlaceholder\",\"registryPassword\":\"fakeCredentialPlaceholder\"}") + "{\"registryUrl\":\"fakeUrlPlaceholder\",\"registryUserName\":\"fakeNamePlaceholder\",\"registryPassword\":\"fakePasswordPlaceholder\"}") .toObject(RegistryInfo.class); Assertions.assertEquals("fakeUrlPlaceholder", model.registryUrl()); Assertions.assertEquals("fakeNamePlaceholder", model.registryUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.registryPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.registryPassword()); } @Test @@ -28,10 +28,10 @@ public void testSerialize() { new RegistryInfo() .withRegistryUrl("fakeUrlPlaceholder") .withRegistryUsername("fakeNamePlaceholder") - .withRegistryPassword("fakeCredentialPlaceholder"); + .withRegistryPassword("fakePasswordPlaceholder"); model = BinaryData.fromObject(model).toObject(RegistryInfo.class); Assertions.assertEquals("fakeUrlPlaceholder", model.registryUrl()); Assertions.assertEquals("fakeNamePlaceholder", model.registryUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.registryPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.registryPassword()); } } diff --git a/sdk/communication/azure-communication-identity/src/test/java/com/azure/communication/identity/CteTestHelper.java b/sdk/communication/azure-communication-identity/src/test/java/com/azure/communication/identity/CteTestHelper.java index cd88f4fbb596..667ef59e50d6 100644 --- a/sdk/communication/azure-communication-identity/src/test/java/com/azure/communication/identity/CteTestHelper.java +++ b/sdk/communication/azure-communication-identity/src/test/java/com/azure/communication/identity/CteTestHelper.java @@ -35,9 +35,9 @@ public class CteTestHelper { private static final String COMMUNICATION_M365_REDIRECT_URI = Configuration.getGlobalConfiguration() .get("COMMUNICATION_M365_REDIRECT_URI", "Sanitized"); private static final String COMMUNICATION_MSAL_USERNAME = Configuration.getGlobalConfiguration() - .get("COMMUNICATION_MSAL_USERNAME", "Sanitized"); + .get("COMMUNICATION_MSAL_USERNAME", "fakeUsernamePlaceholder"); private static final String COMMUNICATION_MSAL_PASSWORD = Configuration.getGlobalConfiguration() - .get("COMMUNICATION_MSAL_PASSWORD", "Sanitized"); + .get("COMMUNICATION_MSAL_PASSWORD", "fakePasswordPlaceholder"); private static final String COMMUNICATION_EXPIRED_TEAMS_TOKEN = Configuration.getGlobalConfiguration() .get("COMMUNICATION_EXPIRED_TEAMS_TOKEN", "Sanitized"); private static final String COMMUNICATION_SKIP_INT_IDENTITY_EXCHANGE_TOKEN_TEST = Configuration.getGlobalConfiguration() diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java index 4e5bf6599f8f..169d1af7f685 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionInnerTests.java @@ -18,7 +18,7 @@ public void testDeserialize() { NetworkConnectionInner model = BinaryData .fromString( - "{\"properties\":{\"provisioningState\":\"f\",\"healthCheckStatus\":\"Warning\",\"networkingResourceGroupName\":\"bfvoowvrv\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"jqppyostronzmy\",\"domainName\":\"fipns\",\"organizationUnit\":\"mcwaekrrjr\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"vuzlm\",\"tags\":{\"noigbrnjwmwk\":\"lfktgplcrpwjxe\"},\"id\":\"nbsazejjoqkag\",\"name\":\"hsxttaugzxnf\",\"type\":\"azpxdtnkdmkqjjl\"}") + "{\"properties\":{\"provisioningState\":\"f\",\"healthCheckStatus\":\"Warning\",\"networkingResourceGroupName\":\"bfvoowvrv\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"jqppyostronzmy\",\"domainName\":\"fipns\",\"organizationUnit\":\"mcwaekrrjr\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"location\":\"vuzlm\",\"tags\":{\"noigbrnjwmwk\":\"lfktgplcrpwjxe\"},\"id\":\"nbsazejjoqkag\",\"name\":\"hsxttaugzxnf\",\"type\":\"azpxdtnkdmkqjjl\"}") .toObject(NetworkConnectionInner.class); Assertions.assertEquals("vuzlm", model.location()); Assertions.assertEquals("lfktgplcrpwjxe", model.tags().get("noigbrnjwmwk")); @@ -28,7 +28,7 @@ public void testDeserialize() { Assertions.assertEquals("fipns", model.domainName()); Assertions.assertEquals("mcwaekrrjr", model.organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.domainPassword()); } @Test @@ -43,7 +43,7 @@ public void testSerialize() { .withDomainName("fipns") .withOrganizationUnit("mcwaekrrjr") .withDomainUsername("fakeNamePlaceholder") - .withDomainPassword("fakeCredentialPlaceholder"); + .withDomainPassword("fakePasswordPlaceholder"); model = BinaryData.fromObject(model).toObject(NetworkConnectionInner.class); Assertions.assertEquals("vuzlm", model.location()); Assertions.assertEquals("lfktgplcrpwjxe", model.tags().get("noigbrnjwmwk")); @@ -53,7 +53,7 @@ public void testSerialize() { Assertions.assertEquals("fipns", model.domainName()); Assertions.assertEquals("mcwaekrrjr", model.organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.domainPassword()); } @SuppressWarnings("unchecked") diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionListResultTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionListResultTests.java index 327c4d5a1b71..64826472e2f0 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionListResultTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionListResultTests.java @@ -14,7 +14,7 @@ public void testDeserialize() { NetworkConnectionListResult model = BinaryData .fromString( - "{\"value\":[{\"properties\":{\"provisioningState\":\"wkqnyhg\",\"healthCheckStatus\":\"Pending\",\"networkingResourceGroupName\":\"jivfxzsjabib\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"tawfsdjpvkvp\",\"domainName\":\"xbkzbzkdvncj\",\"organizationUnit\":\"udurgkakmokz\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"zrfze\",\"tags\":{\"bjbsybb\":\"bizikayuhq\",\"ldgmfpgvmpip\":\"wrv\",\"x\":\"slthaq\"},\"id\":\"smwutwbdsrezpd\",\"name\":\"hneuyowqkd\",\"type\":\"ytisibir\"},{\"properties\":{\"provisioningState\":\"ikpzimejza\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"xi\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"mbzonokix\",\"domainName\":\"q\",\"organizationUnit\":\"rgz\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"tlhflsjcdhszf\",\"tags\":{\"qmqhldvriii\":\"bgofeljag\",\"vtvsexsowueluq\":\"jnalghf\",\"wws\":\"hahhxvrhmzkwpj\",\"qxujxukndxd\":\"ughftqsx\"},\"id\":\"grjguufzd\",\"name\":\"syqtfi\",\"type\":\"whbotzingamv\"},{\"properties\":{\"provisioningState\":\"o\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"udphqamvdkfwyn\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"tbvkayhmtnvyq\",\"domainName\":\"tkzwpcnpwzc\",\"organizationUnit\":\"esgvvsccyaj\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"zrmuhapfcqdps\",\"tags\":{\"vezrypqlmfeo\":\"vpsvuoymgcce\",\"edkowepbqpcrfk\":\"erqwkyhkobopg\",\"tn\":\"wccsnjvcdwxlpqek\"},\"id\":\"htjsying\",\"name\":\"fq\",\"type\":\"tmtdhtmdvypgik\"},{\"properties\":{\"provisioningState\":\"zywkb\",\"healthCheckStatus\":\"Unknown\",\"networkingResourceGroupName\":\"uzhlhkjoqrv\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"atjinrvgoupmfiib\",\"domainName\":\"gjio\",\"organizationUnit\":\"vrwxkv\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"k\",\"tags\":{\"opbyrqufegxu\":\"bxvvyhg\",\"bnhlmc\":\"wz\",\"dn\":\"l\",\"ijejvegrhbpn\":\"itvgbmhrixkwm\"},\"id\":\"ixexcc\",\"name\":\"dreaxh\",\"type\":\"exdrrvqahqkg\"}],\"nextLink\":\"pwijnhy\"}") + "{\"value\":[{\"properties\":{\"provisioningState\":\"wkqnyhg\",\"healthCheckStatus\":\"Pending\",\"networkingResourceGroupName\":\"jivfxzsjabib\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"tawfsdjpvkvp\",\"domainName\":\"xbkzbzkdvncj\",\"organizationUnit\":\"udurgkakmokz\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"location\":\"zrfze\",\"tags\":{\"bjbsybb\":\"bizikayuhq\",\"ldgmfpgvmpip\":\"wrv\",\"x\":\"slthaq\"},\"id\":\"smwutwbdsrezpd\",\"name\":\"hneuyowqkd\",\"type\":\"ytisibir\"},{\"properties\":{\"provisioningState\":\"ikpzimejza\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"xi\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"mbzonokix\",\"domainName\":\"q\",\"organizationUnit\":\"rgz\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"location\":\"tlhflsjcdhszf\",\"tags\":{\"qmqhldvriii\":\"bgofeljag\",\"vtvsexsowueluq\":\"jnalghf\",\"wws\":\"hahhxvrhmzkwpj\",\"qxujxukndxd\":\"ughftqsx\"},\"id\":\"grjguufzd\",\"name\":\"syqtfi\",\"type\":\"whbotzingamv\"},{\"properties\":{\"provisioningState\":\"o\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"udphqamvdkfwyn\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"tbvkayhmtnvyq\",\"domainName\":\"tkzwpcnpwzc\",\"organizationUnit\":\"esgvvsccyaj\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"location\":\"zrmuhapfcqdps\",\"tags\":{\"vezrypqlmfeo\":\"vpsvuoymgcce\",\"edkowepbqpcrfk\":\"erqwkyhkobopg\",\"tn\":\"wccsnjvcdwxlpqek\"},\"id\":\"htjsying\",\"name\":\"fq\",\"type\":\"tmtdhtmdvypgik\"},{\"properties\":{\"provisioningState\":\"zywkb\",\"healthCheckStatus\":\"Unknown\",\"networkingResourceGroupName\":\"uzhlhkjoqrv\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"atjinrvgoupmfiib\",\"domainName\":\"gjio\",\"organizationUnit\":\"vrwxkv\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"location\":\"k\",\"tags\":{\"opbyrqufegxu\":\"bxvvyhg\",\"bnhlmc\":\"wz\",\"dn\":\"l\",\"ijejvegrhbpn\":\"itvgbmhrixkwm\"},\"id\":\"ixexcc\",\"name\":\"dreaxh\",\"type\":\"exdrrvqahqkg\"}],\"nextLink\":\"pwijnhy\"}") .toObject(NetworkConnectionListResult.class); } diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionUpdateTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionUpdateTests.java index 1a3c57e5edb3..8a28d6b73628 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionUpdateTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionUpdateTests.java @@ -17,7 +17,7 @@ public void testDeserialize() { NetworkConnectionUpdate model = BinaryData .fromString( - "{\"properties\":{\"subnetId\":\"o\",\"domainName\":\"ttpkiwkkbnujrywv\",\"organizationUnit\":\"lbfpncurd\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"tags\":{\"dzjlu\":\"hrdgoihxumwcto\",\"wtovvtgsein\":\"dfdlwggyts\",\"knpirgnepttwq\":\"fiufx\",\"mqnrojlpijnkr\":\"sniffc\"},\"location\":\"rddh\"}") + "{\"properties\":{\"subnetId\":\"o\",\"domainName\":\"ttpkiwkkbnujrywv\",\"organizationUnit\":\"lbfpncurd\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"tags\":{\"dzjlu\":\"hrdgoihxumwcto\",\"wtovvtgsein\":\"dfdlwggyts\",\"knpirgnepttwq\":\"fiufx\",\"mqnrojlpijnkr\":\"sniffc\"},\"location\":\"rddh\"}") .toObject(NetworkConnectionUpdate.class); Assertions.assertEquals("hrdgoihxumwcto", model.tags().get("dzjlu")); Assertions.assertEquals("rddh", model.location()); @@ -25,7 +25,7 @@ public void testDeserialize() { Assertions.assertEquals("ttpkiwkkbnujrywv", model.domainName()); Assertions.assertEquals("lbfpncurd", model.organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.domainPassword()); } @Test @@ -47,7 +47,7 @@ public void testSerialize() { .withDomainName("ttpkiwkkbnujrywv") .withOrganizationUnit("lbfpncurd") .withDomainUsername("fakeNamePlaceholder") - .withDomainPassword("fakeCredentialPlaceholder"); + .withDomainPassword("fakePasswordPlaceholder"); model = BinaryData.fromObject(model).toObject(NetworkConnectionUpdate.class); Assertions.assertEquals("hrdgoihxumwcto", model.tags().get("dzjlu")); Assertions.assertEquals("rddh", model.location()); @@ -55,7 +55,7 @@ public void testSerialize() { Assertions.assertEquals("ttpkiwkkbnujrywv", model.domainName()); Assertions.assertEquals("lbfpncurd", model.organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.domainPassword()); } @SuppressWarnings("unchecked") diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsCreateOrUpdateMockTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsCreateOrUpdateMockTests.java index 5c272a470557..474732dd4a44 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsCreateOrUpdateMockTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsCreateOrUpdateMockTests.java @@ -34,7 +34,7 @@ public void testCreateOrUpdate() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"properties\":{\"provisioningState\":\"Succeeded\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"ov\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"ashcxlpmjerbdk\",\"domainName\":\"vidizozsdb\",\"organizationUnit\":\"xjmonf\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"kdasvflyhbxcudch\",\"tags\":{\"ldforobwj\":\"rb\",\"vacqpbtuodxesz\":\"vizbfhfo\",\"rrwoycqucwyhahn\":\"bbelawumuaslzk\"},\"id\":\"mdr\",\"name\":\"ywuhpsvfuur\",\"type\":\"tlwexxwlalniexz\"}"; + "{\"properties\":{\"provisioningState\":\"Succeeded\",\"healthCheckStatus\":\"Running\",\"networkingResourceGroupName\":\"ov\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"ashcxlpmjerbdk\",\"domainName\":\"vidizozsdb\",\"organizationUnit\":\"xjmonf\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"location\":\"kdasvflyhbxcudch\",\"tags\":{\"ldforobwj\":\"rb\",\"vacqpbtuodxesz\":\"vizbfhfo\",\"rrwoycqucwyhahn\":\"bbelawumuaslzk\"},\"id\":\"mdr\",\"name\":\"ywuhpsvfuur\",\"type\":\"tlwexxwlalniexz\"}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -75,7 +75,7 @@ public void testCreateOrUpdate() throws Exception { .withDomainName("tmhheioqa") .withOrganizationUnit("v") .withDomainUsername("fakeNamePlaceholder") - .withDomainPassword("fakeCredentialPlaceholder") + .withDomainPassword("fakePasswordPlaceholder") .create(); Assertions.assertEquals("kdasvflyhbxcudch", response.location()); @@ -86,7 +86,7 @@ public void testCreateOrUpdate() throws Exception { Assertions.assertEquals("vidizozsdb", response.domainName()); Assertions.assertEquals("xjmonf", response.organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", response.domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", response.domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", response.domainPassword()); } @SuppressWarnings("unchecked") diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListByResourceGroupMockTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListByResourceGroupMockTests.java index 8dd4333ccf07..2743f2410e54 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListByResourceGroupMockTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListByResourceGroupMockTests.java @@ -34,7 +34,7 @@ public void testListByResourceGroup() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"value\":[{\"properties\":{\"provisioningState\":\"pdvjdhttzaefedx\",\"healthCheckStatus\":\"Failed\",\"networkingResourceGroupName\":\"rphkmcrjdqnsdfz\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"tg\",\"domainName\":\"lkdghr\",\"organizationUnit\":\"uutlwxezwzhok\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"eafidltugsresm\",\"tags\":{\"rhptilluc\":\"jhoiftxfkfweg\",\"cwsldri\":\"iqtgdqoh\",\"bphbqzmizakakank\":\"etpwbralll\",\"n\":\"p\"},\"id\":\"zhajoylhjlmuo\",\"name\":\"xprimrsop\",\"type\":\"eecjmeis\"}]}"; + "{\"value\":[{\"properties\":{\"provisioningState\":\"pdvjdhttzaefedx\",\"healthCheckStatus\":\"Failed\",\"networkingResourceGroupName\":\"rphkmcrjdqnsdfz\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"tg\",\"domainName\":\"lkdghr\",\"organizationUnit\":\"uutlwxezwzhok\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"location\":\"eafidltugsresm\",\"tags\":{\"rhptilluc\":\"jhoiftxfkfweg\",\"cwsldri\":\"iqtgdqoh\",\"bphbqzmizakakank\":\"etpwbralll\",\"n\":\"p\"},\"id\":\"zhajoylhjlmuo\",\"name\":\"xprimrsop\",\"type\":\"eecjmeis\"}]}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -73,6 +73,6 @@ public void testListByResourceGroup() throws Exception { Assertions.assertEquals("lkdghr", response.iterator().next().domainName()); Assertions.assertEquals("uutlwxezwzhok", response.iterator().next().organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", response.iterator().next().domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", response.iterator().next().domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", response.iterator().next().domainPassword()); } } diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListMockTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListMockTests.java index d5e9e2620756..5504e5eb3e09 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListMockTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkConnectionsListMockTests.java @@ -34,7 +34,7 @@ public void testList() throws Exception { ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class); String responseStr = - "{\"value\":[{\"properties\":{\"provisioningState\":\"ddjib\",\"healthCheckStatus\":\"Failed\",\"networkingResourceGroupName\":\"ititvtzeexavoxt\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"ecdmdqbwpy\",\"domainName\":\"tgsfja\",\"organizationUnit\":\"slhhxudbxv\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"},\"location\":\"zrcxfailcfxwmdbo\",\"tags\":{\"ckknhxkizvy\":\"gsftufqobrjlnacg\",\"nok\":\"nrzvuljraaer\",\"a\":\"gukkjqnvbroy\"},\"id\":\"xulcdisdos\",\"name\":\"jbjsvgjrwh\",\"type\":\"yvycytdclxgcckn\"}]}"; + "{\"value\":[{\"properties\":{\"provisioningState\":\"ddjib\",\"healthCheckStatus\":\"Failed\",\"networkingResourceGroupName\":\"ititvtzeexavoxt\",\"domainJoinType\":\"AzureADJoin\",\"subnetId\":\"ecdmdqbwpy\",\"domainName\":\"tgsfja\",\"organizationUnit\":\"slhhxudbxv\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"},\"location\":\"zrcxfailcfxwmdbo\",\"tags\":{\"ckknhxkizvy\":\"gsftufqobrjlnacg\",\"nok\":\"nrzvuljraaer\",\"a\":\"gukkjqnvbroy\"},\"id\":\"xulcdisdos\",\"name\":\"jbjsvgjrwh\",\"type\":\"yvycytdclxgcckn\"}]}"; Mockito.when(httpResponse.getStatusCode()).thenReturn(200); Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders()); @@ -72,6 +72,6 @@ public void testList() throws Exception { Assertions.assertEquals("tgsfja", response.iterator().next().domainName()); Assertions.assertEquals("slhhxudbxv", response.iterator().next().organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", response.iterator().next().domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", response.iterator().next().domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", response.iterator().next().domainPassword()); } } diff --git a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkPropertiesTests.java b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkPropertiesTests.java index 16993e6dd41e..c46f37a79f7a 100644 --- a/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkPropertiesTests.java +++ b/sdk/devcenter/azure-resourcemanager-devcenter/src/test/java/com/azure/resourcemanager/devcenter/generated/NetworkPropertiesTests.java @@ -16,13 +16,13 @@ public void testDeserialize() { NetworkProperties model = BinaryData .fromString( - "{\"provisioningState\":\"envrkpyouaibrebq\",\"healthCheckStatus\":\"Pending\",\"networkingResourceGroupName\":\"j\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"qtnqtt\",\"domainName\":\"lwfffi\",\"organizationUnit\":\"pjpqqmtedltmmji\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakeCredentialPlaceholder\"}") + "{\"provisioningState\":\"envrkpyouaibrebq\",\"healthCheckStatus\":\"Pending\",\"networkingResourceGroupName\":\"j\",\"domainJoinType\":\"HybridAzureADJoin\",\"subnetId\":\"qtnqtt\",\"domainName\":\"lwfffi\",\"organizationUnit\":\"pjpqqmtedltmmji\",\"domainUsername\":\"fakeNamePlaceholder\",\"domainPassword\":\"fakePasswordPlaceholder\"}") .toObject(NetworkProperties.class); Assertions.assertEquals("qtnqtt", model.subnetId()); Assertions.assertEquals("lwfffi", model.domainName()); Assertions.assertEquals("pjpqqmtedltmmji", model.organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.domainPassword()); Assertions.assertEquals("j", model.networkingResourceGroupName()); Assertions.assertEquals(DomainJoinType.HYBRID_AZURE_ADJOIN, model.domainJoinType()); } @@ -35,7 +35,7 @@ public void testSerialize() { .withDomainName("lwfffi") .withOrganizationUnit("pjpqqmtedltmmji") .withDomainUsername("fakeNamePlaceholder") - .withDomainPassword("fakeCredentialPlaceholder") + .withDomainPassword("fakePasswordPlaceholder") .withNetworkingResourceGroupName("j") .withDomainJoinType(DomainJoinType.HYBRID_AZURE_ADJOIN); model = BinaryData.fromObject(model).toObject(NetworkProperties.class); @@ -43,7 +43,7 @@ public void testSerialize() { Assertions.assertEquals("lwfffi", model.domainName()); Assertions.assertEquals("pjpqqmtedltmmji", model.organizationUnit()); Assertions.assertEquals("fakeNamePlaceholder", model.domainUsername()); - Assertions.assertEquals("fakeCredentialPlaceholder", model.domainPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.domainPassword()); Assertions.assertEquals("j", model.networkingResourceGroupName()); Assertions.assertEquals(DomainJoinType.HYBRID_AZURE_ADJOIN, model.domainJoinType()); } diff --git a/sdk/eventhubs/azure-messaging-eventhubs/src/test/java/com/azure/messaging/eventhubs/models/ProxyOptionsTest.java b/sdk/eventhubs/azure-messaging-eventhubs/src/test/java/com/azure/messaging/eventhubs/models/ProxyOptionsTest.java index 11764d43904a..8266d654c3bc 100644 --- a/sdk/eventhubs/azure-messaging-eventhubs/src/test/java/com/azure/messaging/eventhubs/models/ProxyOptionsTest.java +++ b/sdk/eventhubs/azure-messaging-eventhubs/src/test/java/com/azure/messaging/eventhubs/models/ProxyOptionsTest.java @@ -17,40 +17,40 @@ public class ProxyOptionsTest { private static final String PROXY_HOST = "127.0.0.1"; private static final String PROXY_PORT = "3128"; private static final String HTTP_PROXY = "/" + PROXY_HOST + ":" + PROXY_PORT; // InetAddressHolder's address starts with '/' - private static final String PROXY_USERNAME = "dummyUsername"; - private static final String PROXY_PASSWORD = "dummyPassword"; + private static final String FAKE_PROXY_USERNAME_PLACEHOLDER = "fakeUserNamePlaceholder"; + private static final String FAKE_PROXY_PASSWORD_PLACEHOLDER = "fakePasswordPlaceholder"; private static Proxy proxyAddress = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(PROXY_HOST, Integer.parseInt(PROXY_PORT))); @ParameterizedTest @EnumSource(ProxyAuthenticationType.class) public void validateProxyConfiguration(ProxyAuthenticationType proxyAuthenticationType) { - ProxyOptions proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, PROXY_USERNAME, PROXY_PASSWORD); + ProxyOptions proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, FAKE_PROXY_USERNAME_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER); validateProxyConfiguration(proxyOptions, proxyAuthenticationType); } @ParameterizedTest @EnumSource(ProxyAuthenticationType.class) public void testIsProxyAddressConfigured(ProxyAuthenticationType proxyAuthenticationType) { - ProxyOptions proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, PROXY_USERNAME, PROXY_PASSWORD); + ProxyOptions proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, FAKE_PROXY_USERNAME_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER); Assertions.assertTrue(proxyOptions.isProxyAddressConfigured()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, null, PROXY_PASSWORD); + proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, null, FAKE_PROXY_PASSWORD_PLACEHOLDER); Assertions.assertTrue(proxyOptions.isProxyAddressConfigured()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, PROXY_USERNAME, null); + proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, FAKE_PROXY_USERNAME_PLACEHOLDER, null); Assertions.assertTrue(proxyOptions.isProxyAddressConfigured()); proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, null, null); Assertions.assertTrue(proxyOptions.isProxyAddressConfigured()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, null, PROXY_USERNAME, PROXY_PASSWORD); + proxyOptions = new ProxyOptions(proxyAuthenticationType, null, FAKE_PROXY_USERNAME_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER); Assertions.assertFalse(proxyOptions.isProxyAddressConfigured()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, null, null, PROXY_PASSWORD); + proxyOptions = new ProxyOptions(proxyAuthenticationType, null, null, FAKE_PROXY_PASSWORD_PLACEHOLDER); Assertions.assertFalse(proxyOptions.isProxyAddressConfigured()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, null, PROXY_USERNAME, null); + proxyOptions = new ProxyOptions(proxyAuthenticationType, null, FAKE_PROXY_USERNAME_PLACEHOLDER, null); Assertions.assertFalse(proxyOptions.isProxyAddressConfigured()); proxyOptions = new ProxyOptions(proxyAuthenticationType, null, null, null); @@ -60,25 +60,25 @@ public void testIsProxyAddressConfigured(ProxyAuthenticationType proxyAuthentica @ParameterizedTest @EnumSource(ProxyAuthenticationType.class) public void testHasUserDefinedCredentials(ProxyAuthenticationType proxyAuthenticationType) { - ProxyOptions proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, PROXY_USERNAME, PROXY_PASSWORD); + ProxyOptions proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, FAKE_PROXY_USERNAME_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER); Assertions.assertTrue(proxyOptions.hasUserDefinedCredentials()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, null, PROXY_PASSWORD); + proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, null, FAKE_PROXY_PASSWORD_PLACEHOLDER); Assertions.assertFalse(proxyOptions.hasUserDefinedCredentials()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, PROXY_USERNAME, null); + proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, FAKE_PROXY_USERNAME_PLACEHOLDER, null); Assertions.assertFalse(proxyOptions.hasUserDefinedCredentials()); proxyOptions = new ProxyOptions(proxyAuthenticationType, proxyAddress, null, null); Assertions.assertFalse(proxyOptions.hasUserDefinedCredentials()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, null, PROXY_USERNAME, PROXY_PASSWORD); + proxyOptions = new ProxyOptions(proxyAuthenticationType, null, FAKE_PROXY_USERNAME_PLACEHOLDER, FAKE_PROXY_PASSWORD_PLACEHOLDER); Assertions.assertTrue(proxyOptions.hasUserDefinedCredentials()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, null, null, PROXY_PASSWORD); + proxyOptions = new ProxyOptions(proxyAuthenticationType, null, null, FAKE_PROXY_PASSWORD_PLACEHOLDER); Assertions.assertFalse(proxyOptions.hasUserDefinedCredentials()); - proxyOptions = new ProxyOptions(proxyAuthenticationType, null, PROXY_USERNAME, null); + proxyOptions = new ProxyOptions(proxyAuthenticationType, null, FAKE_PROXY_USERNAME_PLACEHOLDER, null); Assertions.assertFalse(proxyOptions.hasUserDefinedCredentials()); proxyOptions = new ProxyOptions(proxyAuthenticationType, null, null, null); @@ -89,8 +89,8 @@ private static void validateProxyConfiguration(ProxyOptions proxyOptions, ProxyA String proxyAddressStr = proxyOptions.getProxyAddress().address().toString(); ProxyAuthenticationType authentication = proxyOptions.getAuthentication(); Assertions.assertEquals(HTTP_PROXY, proxyAddressStr); - Assertions.assertEquals(PROXY_USERNAME, proxyOptions.getCredential().getUserName()); - Assertions.assertEquals(PROXY_PASSWORD, new String(proxyOptions.getCredential().getPassword())); + Assertions.assertEquals(FAKE_PROXY_USERNAME_PLACEHOLDER, proxyOptions.getCredential().getUserName()); + Assertions.assertEquals(FAKE_PROXY_PASSWORD_PLACEHOLDER, new String(proxyOptions.getCredential().getPassword())); Assertions.assertEquals(proxyAuthenticationType, authentication); } } diff --git a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/HttpProxyConfigPasswordTests.java b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/HttpProxyConfigPasswordTests.java index 47c8f6cd74eb..7bda10ea7aa5 100644 --- a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/HttpProxyConfigPasswordTests.java +++ b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/HttpProxyConfigPasswordTests.java @@ -13,14 +13,14 @@ public final class HttpProxyConfigPasswordTests { @Test public void testDeserialize() { HttpProxyConfigPassword model = - BinaryData.fromString("{\"password\":\"bavxbniwdjswzt\"}").toObject(HttpProxyConfigPassword.class); - Assertions.assertEquals("bavxbniwdjswzt", model.password()); + BinaryData.fromString("{\"password\":\"fakePasswordPlaceholder\"}").toObject(HttpProxyConfigPassword.class); + Assertions.assertEquals("fakePasswordPlaceholder", model.password()); } @Test public void testSerialize() { - HttpProxyConfigPassword model = new HttpProxyConfigPassword().withPassword("bavxbniwdjswzt"); + HttpProxyConfigPassword model = new HttpProxyConfigPassword().withPassword("fakePasswordPlaceholder"); model = BinaryData.fromObject(model).toObject(HttpProxyConfigPassword.class); - Assertions.assertEquals("bavxbniwdjswzt", model.password()); + Assertions.assertEquals("fakePasswordPlaceholder", model.password()); } } diff --git a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/HttpProxyConfigTests.java b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/HttpProxyConfigTests.java index c4b7f5f46264..1e8d33fa7451 100644 --- a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/HttpProxyConfigTests.java +++ b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/HttpProxyConfigTests.java @@ -16,14 +16,14 @@ public void testDeserialize() { HttpProxyConfig model = BinaryData .fromString( - "{\"password\":\"clha\",\"httpProxy\":\"dbabp\",\"httpsProxy\":\"wrqlfktsthsuco\",\"noProxy\":[\"yyazttbt\",\"wrqpue\",\"ckzywbiexzfeyue\",\"xibxujwbhqwalm\"],\"trustedCa\":\"yoxa\",\"username\":\"dkzjancuxrh\"}") + "{\"password\":\"fakePasswordPlaceholder\",\"httpProxy\":\"dbabp\",\"httpsProxy\":\"wrqlfktsthsuco\",\"noProxy\":[\"yyazttbt\",\"wrqpue\",\"ckzywbiexzfeyue\",\"xibxujwbhqwalm\"],\"trustedCa\":\"yoxa\",\"username\":\"fakeUsernamePlaceholder\"}") .toObject(HttpProxyConfig.class); Assertions.assertEquals("dbabp", model.httpProxy()); Assertions.assertEquals("wrqlfktsthsuco", model.httpsProxy()); Assertions.assertEquals("yyazttbt", model.noProxy().get(0)); Assertions.assertEquals("yoxa", model.trustedCa()); - Assertions.assertEquals("dkzjancuxrh", model.username()); - Assertions.assertEquals("clha", model.password()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.username()); + Assertions.assertEquals("fakePasswordPlaceholder", model.password()); } @Test @@ -34,14 +34,14 @@ public void testSerialize() { .withHttpsProxy("wrqlfktsthsuco") .withNoProxy(Arrays.asList("yyazttbt", "wrqpue", "ckzywbiexzfeyue", "xibxujwbhqwalm")) .withTrustedCa("yoxa") - .withUsername("dkzjancuxrh") - .withPassword("clha"); + .withUsername("fakeUsernamePlaceholder") + .withPassword("fakePasswordPlaceholder"); model = BinaryData.fromObject(model).toObject(HttpProxyConfig.class); Assertions.assertEquals("dbabp", model.httpProxy()); Assertions.assertEquals("wrqlfktsthsuco", model.httpsProxy()); Assertions.assertEquals("yyazttbt", model.noProxy().get(0)); Assertions.assertEquals("yoxa", model.trustedCa()); - Assertions.assertEquals("dkzjancuxrh", model.username()); - Assertions.assertEquals("clha", model.password()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.username()); + Assertions.assertEquals("fakePasswordPlaceholder", model.password()); } } diff --git a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/ProvisionedClustersPropertiesWithSecretsTests.java b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/ProvisionedClustersPropertiesWithSecretsTests.java index c6d171a2341c..120e9f8f443e 100644 --- a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/ProvisionedClustersPropertiesWithSecretsTests.java +++ b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/ProvisionedClustersPropertiesWithSecretsTests.java @@ -20,25 +20,25 @@ public void testDeserialize() { ProvisionedClustersPropertiesWithSecrets model = BinaryData .fromString( - "{\"aadProfile\":{\"adminGroupObjectIDs\":[\"conuqszfkbeype\",\"rmjmwvvjektc\",\"senhwlrs\",\"frzpwvlqdqgb\"],\"clientAppID\":\"ylihkaetckt\",\"enableAzureRbac\":true,\"managed\":false,\"serverAppID\":\"snkymuctq\",\"tenantID\":\"fbebrjcxer\",\"serverAppSecret\":\"wutttxfvjrbi\"},\"windowsProfile\":{\"adminPassword\":\"xepcyvahfn\",\"adminUsername\":\"kyqxjvuujqgidokg\",\"enableCsiProxy\":true,\"licenseType\":\"Windows_Server\"},\"httpProxyConfig\":{\"password\":\"vcltbgsncgh\",\"httpProxy\":\"esz\",\"httpsProxy\":\"bijhtxfvgxbf\",\"noProxy\":[\"nehmpvecx\",\"odebfqkkrbmpu\",\"gr\"],\"trustedCa\":\"flz\",\"username\":\"bxzpuzycisp\"}}") + "{\"aadProfile\":{\"adminGroupObjectIDs\":[\"conuqszfkbeype\",\"rmjmwvvjektc\",\"senhwlrs\",\"frzpwvlqdqgb\"],\"clientAppID\":\"ylihkaetckt\",\"enableAzureRbac\":true,\"managed\":false,\"serverAppID\":\"snkymuctq\",\"tenantID\":\"fbebrjcxer\",\"serverAppSecret\":\"fakeSecretPlaceholder\"},\"windowsProfile\":{\"adminPassword\":\"fakePasswordPlaceholder\",\"adminUsername\":\"fakeUsernamePlaceholder\",\"enableCsiProxy\":true,\"licenseType\":\"Windows_Server\"},\"httpProxyConfig\":{\"password\":\"fakePasswordPlaceholder\",\"httpProxy\":\"esz\",\"httpsProxy\":\"bijhtxfvgxbf\",\"noProxy\":[\"nehmpvecx\",\"odebfqkkrbmpu\",\"gr\"],\"trustedCa\":\"flz\",\"username\":\"fakeUsernamePlaceholder\"}}") .toObject(ProvisionedClustersPropertiesWithSecrets.class); - Assertions.assertEquals("wutttxfvjrbi", model.aadProfile().serverAppSecret()); + Assertions.assertEquals("fakeSecretPlaceholder", model.aadProfile().serverAppSecret()); Assertions.assertEquals("conuqszfkbeype", model.aadProfile().adminGroupObjectIDs().get(0)); Assertions.assertEquals("ylihkaetckt", model.aadProfile().clientAppId()); Assertions.assertEquals(true, model.aadProfile().enableAzureRbac()); Assertions.assertEquals(false, model.aadProfile().managed()); Assertions.assertEquals("snkymuctq", model.aadProfile().serverAppId()); Assertions.assertEquals("fbebrjcxer", model.aadProfile().tenantId()); - Assertions.assertEquals("kyqxjvuujqgidokg", model.windowsProfile().adminUsername()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.windowsProfile().adminUsername()); Assertions.assertEquals(true, model.windowsProfile().enableCsiProxy()); Assertions.assertEquals(LicenseType.WINDOWS_SERVER, model.windowsProfile().licenseType()); - Assertions.assertEquals("xepcyvahfn", model.windowsProfile().adminPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.windowsProfile().adminPassword()); Assertions.assertEquals("esz", model.httpProxyConfig().httpProxy()); Assertions.assertEquals("bijhtxfvgxbf", model.httpProxyConfig().httpsProxy()); Assertions.assertEquals("nehmpvecx", model.httpProxyConfig().noProxy().get(0)); Assertions.assertEquals("flz", model.httpProxyConfig().trustedCa()); - Assertions.assertEquals("bxzpuzycisp", model.httpProxyConfig().username()); - Assertions.assertEquals("vcltbgsncgh", model.httpProxyConfig().password()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.httpProxyConfig().username()); + Assertions.assertEquals("fakePasswordPlaceholder", model.httpProxyConfig().password()); } @Test @@ -47,7 +47,7 @@ public void testSerialize() { new ProvisionedClustersPropertiesWithSecrets() .withAadProfile( new AadProfile() - .withServerAppSecret("wutttxfvjrbi") + .withServerAppSecret("fakeSecretPlaceholder") .withAdminGroupObjectIDs( Arrays.asList("conuqszfkbeype", "rmjmwvvjektc", "senhwlrs", "frzpwvlqdqgb")) .withClientAppId("ylihkaetckt") @@ -57,35 +57,35 @@ public void testSerialize() { .withTenantId("fbebrjcxer")) .withWindowsProfile( new WindowsProfile() - .withAdminUsername("kyqxjvuujqgidokg") + .withAdminUsername("fakeUsernamePlaceholder") .withEnableCsiProxy(true) .withLicenseType(LicenseType.WINDOWS_SERVER) - .withAdminPassword("xepcyvahfn")) + .withAdminPassword("fakePasswordPlaceholder")) .withHttpProxyConfig( new HttpProxyConfig() .withHttpProxy("esz") .withHttpsProxy("bijhtxfvgxbf") .withNoProxy(Arrays.asList("nehmpvecx", "odebfqkkrbmpu", "gr")) .withTrustedCa("flz") - .withUsername("bxzpuzycisp") - .withPassword("vcltbgsncgh")); + .withUsername("fakeUsernamePlaceholder") + .withPassword("fakePasswordPlaceholder")); model = BinaryData.fromObject(model).toObject(ProvisionedClustersPropertiesWithSecrets.class); - Assertions.assertEquals("wutttxfvjrbi", model.aadProfile().serverAppSecret()); + Assertions.assertEquals("fakeSecretPlaceholder", model.aadProfile().serverAppSecret()); Assertions.assertEquals("conuqszfkbeype", model.aadProfile().adminGroupObjectIDs().get(0)); Assertions.assertEquals("ylihkaetckt", model.aadProfile().clientAppId()); Assertions.assertEquals(true, model.aadProfile().enableAzureRbac()); Assertions.assertEquals(false, model.aadProfile().managed()); Assertions.assertEquals("snkymuctq", model.aadProfile().serverAppId()); Assertions.assertEquals("fbebrjcxer", model.aadProfile().tenantId()); - Assertions.assertEquals("kyqxjvuujqgidokg", model.windowsProfile().adminUsername()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.windowsProfile().adminUsername()); Assertions.assertEquals(true, model.windowsProfile().enableCsiProxy()); Assertions.assertEquals(LicenseType.WINDOWS_SERVER, model.windowsProfile().licenseType()); - Assertions.assertEquals("xepcyvahfn", model.windowsProfile().adminPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.windowsProfile().adminPassword()); Assertions.assertEquals("esz", model.httpProxyConfig().httpProxy()); Assertions.assertEquals("bijhtxfvgxbf", model.httpProxyConfig().httpsProxy()); Assertions.assertEquals("nehmpvecx", model.httpProxyConfig().noProxy().get(0)); Assertions.assertEquals("flz", model.httpProxyConfig().trustedCa()); - Assertions.assertEquals("bxzpuzycisp", model.httpProxyConfig().username()); - Assertions.assertEquals("vcltbgsncgh", model.httpProxyConfig().password()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.httpProxyConfig().username()); + Assertions.assertEquals("fakePasswordPlaceholder", model.httpProxyConfig().password()); } } diff --git a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/ProvisionedClustersTests.java b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/ProvisionedClustersTests.java index 497407018647..48bc57548599 100644 --- a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/ProvisionedClustersTests.java +++ b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/ProvisionedClustersTests.java @@ -37,30 +37,30 @@ public void testDeserialize() { ProvisionedClusters model = BinaryData .fromString( - "{\"identity\":{\"principalId\":\"kuofqweykhme\",\"tenantId\":\"vfyexfw\",\"type\":\"SystemAssigned\"},\"properties\":{\"enableRbac\":false,\"linuxProfile\":{\"adminUsername\":\"yvdcsitynnaa\"},\"features\":{},\"addonProfiles\":{\"qsc\":{\"config\":{},\"enabled\":true}},\"controlPlane\":{\"name\":\"hezrkgq\",\"count\":1290040732,\"availabilityZones\":[\"fovgmkqsleyyvxy\",\"jpkcattpng\"],\"maxCount\":1035421848,\"maxPods\":183805680,\"minCount\":957799467,\"mode\":\"LB\",\"nodeLabels\":{\"q\":\"vmdajvnysou\",\"yhltrpmopjmcm\":\"canoaeupf\",\"thfuiuaodsfcpkvx\":\"tuo\",\"dagfuaxbezyiuok\":\"dpuozmyz\"},\"nodeTaints\":[\"hrdxwzywqsmbs\",\"reximoryocfs\",\"ksymd\",\"ys\"],\"osType\":\"Linux\",\"nodeImageVersion\":\"uxh\",\"vmSize\":\"udxorrqn\"},\"kubernetesVersion\":\"czvyifq\",\"networkProfile\":{\"loadBalancerSku\":\"stacked-metallb\",\"dnsServiceIP\":\"sllr\",\"networkPolicy\":\"flannel\",\"podCidr\":\"f\",\"podCidrs\":[\"kpnpulexxbczwtr\"],\"serviceCidr\":\"iqzbq\",\"serviceCidrs\":[\"ovm\",\"okacspk\",\"lhzdobp\",\"jmflbvvnch\"]},\"nodeResourceGroup\":\"cciw\",\"agentPoolProfiles\":[{\"name\":\"qkhr\",\"count\":1877680716,\"availabilityZones\":[],\"maxCount\":288403017,\"maxPods\":1916962672,\"minCount\":972559338,\"mode\":\"LB\",\"nodeLabels\":{},\"nodeTaints\":[],\"osType\":\"Linux\",\"nodeImageVersion\":\"uimjmvx\",\"vmSize\":\"duugidyjr\"}],\"cloudProviderProfile\":{},\"provisioningState\":\"Created\",\"status\":{\"addonStatus\":{},\"errorMessage\":\"onpc\"},\"aadProfile\":{\"adminGroupObjectIDs\":[\"hslkevleggzf\",\"u\",\"fmvfaxkffeiit\"],\"clientAppID\":\"vmezy\",\"enableAzureRbac\":true,\"managed\":false,\"serverAppID\":\"sbbzo\",\"tenantID\":\"igrxwburvjxxjn\",\"serverAppSecret\":\"ydptkoen\"},\"windowsProfile\":{\"adminPassword\":\"knvudwtiukb\",\"adminUsername\":\"ngkpocipazy\",\"enableCsiProxy\":true,\"licenseType\":\"None\"},\"httpProxyConfig\":{\"password\":\"jnpiucgyg\",\"httpProxy\":\"qzntypm\",\"httpsProxy\":\"p\",\"noProxy\":[\"drqjsdpy\"],\"trustedCa\":\"fyhxde\",\"username\":\"jzicwifsjt\"}},\"extendedLocation\":{\"type\":\"bishcbkhajdeyea\",\"name\":\"p\"},\"location\":\"agalpbuxwgipwhon\",\"tags\":{\"injep\":\"gshwankixz\",\"iyqzrnk\":\"ttmrywnuzoqf\"},\"id\":\"qvyxlwhzlsicoho\",\"name\":\"qnwvlrya\",\"type\":\"w\"}") + "{\"identity\":{\"principalId\":\"kuofqweykhme\",\"tenantId\":\"vfyexfw\",\"type\":\"SystemAssigned\"},\"properties\":{\"enableRbac\":false,\"linuxProfile\":{\"adminUsername\":\"fakeUsernamePlaceholder\"},\"features\":{},\"addonProfiles\":{\"qsc\":{\"config\":{},\"enabled\":true}},\"controlPlane\":{\"name\":\"hezrkgq\",\"count\":1290040732,\"availabilityZones\":[\"fovgmkqsleyyvxy\",\"jpkcattpng\"],\"maxCount\":1035421848,\"maxPods\":183805680,\"minCount\":957799467,\"mode\":\"LB\",\"nodeLabels\":{\"q\":\"vmdajvnysou\",\"yhltrpmopjmcm\":\"canoaeupf\",\"thfuiuaodsfcpkvx\":\"tuo\",\"dagfuaxbezyiuok\":\"dpuozmyz\"},\"nodeTaints\":[\"hrdxwzywqsmbs\",\"reximoryocfs\",\"ksymd\",\"ys\"],\"osType\":\"Linux\",\"nodeImageVersion\":\"uxh\",\"vmSize\":\"udxorrqn\"},\"kubernetesVersion\":\"czvyifq\",\"networkProfile\":{\"loadBalancerSku\":\"stacked-metallb\",\"dnsServiceIP\":\"sllr\",\"networkPolicy\":\"flannel\",\"podCidr\":\"f\",\"podCidrs\":[\"kpnpulexxbczwtr\"],\"serviceCidr\":\"iqzbq\",\"serviceCidrs\":[\"ovm\",\"okacspk\",\"lhzdobp\",\"jmflbvvnch\"]},\"nodeResourceGroup\":\"cciw\",\"agentPoolProfiles\":[{\"name\":\"qkhr\",\"count\":1877680716,\"availabilityZones\":[],\"maxCount\":288403017,\"maxPods\":1916962672,\"minCount\":972559338,\"mode\":\"LB\",\"nodeLabels\":{},\"nodeTaints\":[],\"osType\":\"Linux\",\"nodeImageVersion\":\"uimjmvx\",\"vmSize\":\"duugidyjr\"}],\"cloudProviderProfile\":{},\"provisioningState\":\"Created\",\"status\":{\"addonStatus\":{},\"errorMessage\":\"onpc\"},\"aadProfile\":{\"adminGroupObjectIDs\":[\"hslkevleggzf\",\"u\",\"fmvfaxkffeiit\"],\"clientAppID\":\"vmezy\",\"enableAzureRbac\":true,\"managed\":false,\"serverAppID\":\"sbbzo\",\"tenantID\":\"igrxwburvjxxjn\",\"serverAppSecret\":\"fakeSecretPlaceholder\"},\"windowsProfile\":{\"adminPassword\":\"fakePasswordPlaceholder\",\"adminUsername\":\"fakeUsernamePlaceholder\",\"enableCsiProxy\":true,\"licenseType\":\"None\"},\"httpProxyConfig\":{\"password\":\"fakePasswordPlaceholder\",\"httpProxy\":\"qzntypm\",\"httpsProxy\":\"p\",\"noProxy\":[\"drqjsdpy\"],\"trustedCa\":\"fyhxde\",\"username\":\"fakeUsernamePlaceholder\"}},\"extendedLocation\":{\"type\":\"bishcbkhajdeyea\",\"name\":\"p\"},\"location\":\"agalpbuxwgipwhon\",\"tags\":{\"injep\":\"gshwankixz\",\"iyqzrnk\":\"ttmrywnuzoqf\"},\"id\":\"qvyxlwhzlsicoho\",\"name\":\"qnwvlrya\",\"type\":\"w\"}") .toObject(ProvisionedClusters.class); Assertions.assertEquals("agalpbuxwgipwhon", model.location()); Assertions.assertEquals("gshwankixz", model.tags().get("injep")); Assertions.assertEquals(ResourceIdentityType.SYSTEM_ASSIGNED, model.identity().type()); - Assertions.assertEquals("ydptkoen", model.properties().aadProfile().serverAppSecret()); + Assertions.assertEquals("fakeSecretPlaceholder", model.properties().aadProfile().serverAppSecret()); Assertions.assertEquals("hslkevleggzf", model.properties().aadProfile().adminGroupObjectIDs().get(0)); Assertions.assertEquals("vmezy", model.properties().aadProfile().clientAppId()); Assertions.assertEquals(true, model.properties().aadProfile().enableAzureRbac()); Assertions.assertEquals(false, model.properties().aadProfile().managed()); Assertions.assertEquals("sbbzo", model.properties().aadProfile().serverAppId()); Assertions.assertEquals("igrxwburvjxxjn", model.properties().aadProfile().tenantId()); - Assertions.assertEquals("ngkpocipazy", model.properties().windowsProfile().adminUsername()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.properties().windowsProfile().adminUsername()); Assertions.assertEquals(true, model.properties().windowsProfile().enableCsiProxy()); Assertions.assertEquals(LicenseType.NONE, model.properties().windowsProfile().licenseType()); - Assertions.assertEquals("knvudwtiukb", model.properties().windowsProfile().adminPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.properties().windowsProfile().adminPassword()); Assertions.assertEquals("qzntypm", model.properties().httpProxyConfig().httpProxy()); Assertions.assertEquals("p", model.properties().httpProxyConfig().httpsProxy()); Assertions.assertEquals("drqjsdpy", model.properties().httpProxyConfig().noProxy().get(0)); Assertions.assertEquals("fyhxde", model.properties().httpProxyConfig().trustedCa()); - Assertions.assertEquals("jzicwifsjt", model.properties().httpProxyConfig().username()); - Assertions.assertEquals("jnpiucgyg", model.properties().httpProxyConfig().password()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.properties().httpProxyConfig().username()); + Assertions.assertEquals("fakePasswordPlaceholder", model.properties().httpProxyConfig().password()); Assertions.assertEquals(false, model.properties().enableRbac()); - Assertions.assertEquals("yvdcsitynnaa", model.properties().linuxProfile().adminUsername()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.properties().linuxProfile().adminUsername()); Assertions.assertEquals(true, model.properties().addonProfiles().get("qsc").enabled()); Assertions.assertEquals(1290040732, model.properties().controlPlane().count()); Assertions.assertEquals("fovgmkqsleyyvxy", model.properties().controlPlane().availabilityZones().get(0)); @@ -107,7 +107,7 @@ public void testSerialize() { new ProvisionedClustersAllProperties() .withAadProfile( new AadProfile() - .withServerAppSecret("ydptkoen") + .withServerAppSecret("fakeSecretPlaceholder") .withAdminGroupObjectIDs(Arrays.asList("hslkevleggzf", "u", "fmvfaxkffeiit")) .withClientAppId("vmezy") .withEnableAzureRbac(true) @@ -116,20 +116,20 @@ public void testSerialize() { .withTenantId("igrxwburvjxxjn")) .withWindowsProfile( new WindowsProfile() - .withAdminUsername("ngkpocipazy") + .withAdminUsername("fakeUsernamePlaceholder") .withEnableCsiProxy(true) .withLicenseType(LicenseType.NONE) - .withAdminPassword("knvudwtiukb")) + .withAdminPassword("fakePasswordPlaceholder")) .withHttpProxyConfig( new HttpProxyConfig() .withHttpProxy("qzntypm") .withHttpsProxy("p") .withNoProxy(Arrays.asList("drqjsdpy")) .withTrustedCa("fyhxde") - .withUsername("jzicwifsjt") - .withPassword("jnpiucgyg")) + .withUsername("fakeUsernamePlaceholder") + .withPassword("fakePasswordPlaceholder")) .withEnableRbac(false) - .withLinuxProfile(new LinuxProfileProperties().withAdminUsername("yvdcsitynnaa")) + .withLinuxProfile(new LinuxProfileProperties().withAdminUsername("fakeUsernamePlaceholder")) .withFeatures(new ProvisionedClustersCommonPropertiesFeatures()) .withAddonProfiles(mapOf("qsc", new AddonProfiles().withConfig(mapOf()).withEnabled(true))) .withControlPlane( @@ -189,25 +189,25 @@ public void testSerialize() { Assertions.assertEquals("agalpbuxwgipwhon", model.location()); Assertions.assertEquals("gshwankixz", model.tags().get("injep")); Assertions.assertEquals(ResourceIdentityType.SYSTEM_ASSIGNED, model.identity().type()); - Assertions.assertEquals("ydptkoen", model.properties().aadProfile().serverAppSecret()); + Assertions.assertEquals("fakeSecretPlaceholder", model.properties().aadProfile().serverAppSecret()); Assertions.assertEquals("hslkevleggzf", model.properties().aadProfile().adminGroupObjectIDs().get(0)); Assertions.assertEquals("vmezy", model.properties().aadProfile().clientAppId()); Assertions.assertEquals(true, model.properties().aadProfile().enableAzureRbac()); Assertions.assertEquals(false, model.properties().aadProfile().managed()); Assertions.assertEquals("sbbzo", model.properties().aadProfile().serverAppId()); Assertions.assertEquals("igrxwburvjxxjn", model.properties().aadProfile().tenantId()); - Assertions.assertEquals("ngkpocipazy", model.properties().windowsProfile().adminUsername()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.properties().windowsProfile().adminUsername()); Assertions.assertEquals(true, model.properties().windowsProfile().enableCsiProxy()); Assertions.assertEquals(LicenseType.NONE, model.properties().windowsProfile().licenseType()); - Assertions.assertEquals("knvudwtiukb", model.properties().windowsProfile().adminPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.properties().windowsProfile().adminPassword()); Assertions.assertEquals("qzntypm", model.properties().httpProxyConfig().httpProxy()); Assertions.assertEquals("p", model.properties().httpProxyConfig().httpsProxy()); Assertions.assertEquals("drqjsdpy", model.properties().httpProxyConfig().noProxy().get(0)); Assertions.assertEquals("fyhxde", model.properties().httpProxyConfig().trustedCa()); - Assertions.assertEquals("jzicwifsjt", model.properties().httpProxyConfig().username()); - Assertions.assertEquals("jnpiucgyg", model.properties().httpProxyConfig().password()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.properties().httpProxyConfig().username()); + Assertions.assertEquals("fakePasswordPlaceholder", model.properties().httpProxyConfig().password()); Assertions.assertEquals(false, model.properties().enableRbac()); - Assertions.assertEquals("yvdcsitynnaa", model.properties().linuxProfile().adminUsername()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.properties().linuxProfile().adminUsername()); Assertions.assertEquals(true, model.properties().addonProfiles().get("qsc").enabled()); Assertions.assertEquals(1290040732, model.properties().controlPlane().count()); Assertions.assertEquals("fovgmkqsleyyvxy", model.properties().controlPlane().availabilityZones().get(0)); diff --git a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/WindowsProfilePasswordTests.java b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/WindowsProfilePasswordTests.java index 76c8fb38eeb7..262c0cc5a466 100644 --- a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/WindowsProfilePasswordTests.java +++ b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/WindowsProfilePasswordTests.java @@ -13,14 +13,14 @@ public final class WindowsProfilePasswordTests { @Test public void testDeserialize() { WindowsProfilePassword model = - BinaryData.fromString("{\"adminPassword\":\"ybyxc\"}").toObject(WindowsProfilePassword.class); - Assertions.assertEquals("ybyxc", model.adminPassword()); + BinaryData.fromString("{\"adminPassword\":\"fakePasswordPlaceholder\"}").toObject(WindowsProfilePassword.class); + Assertions.assertEquals("fakePasswordPlaceholder", model.adminPassword()); } @Test public void testSerialize() { - WindowsProfilePassword model = new WindowsProfilePassword().withAdminPassword("ybyxc"); + WindowsProfilePassword model = new WindowsProfilePassword().withAdminPassword("fakePasswordPlaceholder"); model = BinaryData.fromObject(model).toObject(WindowsProfilePassword.class); - Assertions.assertEquals("ybyxc", model.adminPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.adminPassword()); } } diff --git a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/WindowsProfileTests.java b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/WindowsProfileTests.java index dd2d575a1fbf..095811fe3723 100644 --- a/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/WindowsProfileTests.java +++ b/sdk/hybridcontainerservice/azure-resourcemanager-hybridcontainerservice/src/test/java/com/azure/resourcemanager/hybridcontainerservice/generated/WindowsProfileTests.java @@ -16,26 +16,26 @@ public void testDeserialize() { WindowsProfile model = BinaryData .fromString( - "{\"adminPassword\":\"skpbhenbtkcxywn\",\"adminUsername\":\"nrs\",\"enableCsiProxy\":false,\"licenseType\":\"None\"}") + "{\"adminPassword\":\"fakePasswordPlaceholder\",\"adminUsername\":\"fakeUsernamePlaceholder\",\"enableCsiProxy\":false,\"licenseType\":\"None\"}") .toObject(WindowsProfile.class); - Assertions.assertEquals("nrs", model.adminUsername()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.adminUsername()); Assertions.assertEquals(false, model.enableCsiProxy()); Assertions.assertEquals(LicenseType.NONE, model.licenseType()); - Assertions.assertEquals("skpbhenbtkcxywn", model.adminPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.adminPassword()); } @Test public void testSerialize() { WindowsProfile model = new WindowsProfile() - .withAdminUsername("nrs") + .withAdminUsername("fakeUsernamePlaceholder") .withEnableCsiProxy(false) .withLicenseType(LicenseType.NONE) - .withAdminPassword("skpbhenbtkcxywn"); + .withAdminPassword("fakePasswordPlaceholder"); model = BinaryData.fromObject(model).toObject(WindowsProfile.class); - Assertions.assertEquals("nrs", model.adminUsername()); + Assertions.assertEquals("fakeUsernamePlaceholder", model.adminUsername()); Assertions.assertEquals(false, model.enableCsiProxy()); Assertions.assertEquals(LicenseType.NONE, model.licenseType()); - Assertions.assertEquals("skpbhenbtkcxywn", model.adminPassword()); + Assertions.assertEquals("fakePasswordPlaceholder", model.adminPassword()); } } diff --git a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java index a3e9aa795a8e..c573a5e6ce8d 100644 --- a/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java +++ b/sdk/identity/azure-identity/src/samples/java/com/azure/identity/credential/JavaDocCodeSnippets.java @@ -26,8 +26,8 @@ public final class JavaDocCodeSnippets { private String tenantId = System.getenv("AZURE_TENANT_ID"); private String clientId = System.getenv("AZURE_CLIENT_ID"); private String clientSecret = System.getenv("AZURE_CLIENT_SECRET"); - private String username = "username"; - private String fakePasswordPlaceholder = "fakeCredentialPlaceholder"; + private String fakeUsernamePlaceholder = "fakeUsernamePlaceholder"; + private String fakePasswordPlaceholder = "fakePasswordPlaceholder"; /** * Method to insert code snippets for {@link ClientSecretCredential} @@ -80,7 +80,7 @@ public void chainedTokenCredentialCodeSnippets() { // BEGIN: com.azure.identity.credential.chainedtokencredential.construct UsernamePasswordCredential usernamePasswordCredential = new UsernamePasswordCredentialBuilder() .clientId(clientId) - .username(username) + .username(fakeUsernamePlaceholder) .password(fakePasswordPlaceholder) .build(); InteractiveBrowserCredential interactiveBrowserCredential = new InteractiveBrowserCredentialBuilder() diff --git a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java index 4b12ff58c0f9..533071123c12 100644 --- a/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java +++ b/sdk/identity/azure-identity/src/test/java/com/azure/identity/UsernamePasswordCredentialTest.java @@ -36,8 +36,8 @@ public class UsernamePasswordCredentialTest { @Test public void testValidUserCredential() throws Exception { // setup - String username = "testuser"; - String password = "fakeCredentialPlaceholder"; + String fakeUsernamePlaceholder = "fakeUsernamePlaceholder"; + String fakePasswordPlaceholder = "fakePasswordPlaceholder"; String token1 = "token1"; String token2 = "token2"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); @@ -47,7 +47,7 @@ public void testValidUserCredential() throws Exception { // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request1, username, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); + when(identityClient.authenticateWithUsernamePassword(request1, fakeUsernamePlaceholder, fakePasswordPlaceholder)).thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> { TokenRequestContext argument = (TokenRequestContext) invocation.getArguments()[0]; @@ -62,7 +62,7 @@ public void testValidUserCredential() throws Exception { })) { // test UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).password(password).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).password(fakePasswordPlaceholder).build(); StepVerifier.create(credential.getToken(request1)) .expectNextMatches(accessToken -> token1.equals(accessToken.getToken()) && expiresAt.getSecond() == accessToken.getExpiresAt().getSecond()) @@ -75,7 +75,7 @@ public void testValidUserCredential() throws Exception { } try (MockedConstruction identityClientMock = mockConstruction(IdentitySyncClient.class, (identitySyncClient, context) -> { - when(identitySyncClient.authenticateWithUsernamePassword(request1, username, password)).thenReturn(TestUtils.getMockMsalTokenSync(token1, expiresAt)); + when(identitySyncClient.authenticateWithUsernamePassword(request1, fakeUsernamePlaceholder, fakePasswordPlaceholder)).thenReturn(TestUtils.getMockMsalTokenSync(token1, expiresAt)); when(identitySyncClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> { TokenRequestContext argument = (TokenRequestContext) invocation.getArguments()[0]; @@ -89,7 +89,7 @@ public void testValidUserCredential() throws Exception { }); })) { UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).password(password).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).password(fakePasswordPlaceholder).build(); // test AccessToken accessToken = credential.getTokenSync(request1); Assert.assertEquals(token1, accessToken.getToken()); @@ -105,20 +105,20 @@ public void testValidUserCredential() throws Exception { @Test public void testInvalidUserCredential() throws Exception { // setup - String username = "testuser"; + String fakeUsernamePlaceholder = "fakeUsernamePlaceholder"; String badPassword = "Password"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request, username, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); + when(identityClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); when(identityClient.getIdentityClientOptions()).thenReturn(new IdentityClientOptions()); })) { // test UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).password(badPassword).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).password(badPassword).build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(t -> t instanceof MsalServiceException && "bad credential".equals(t.getMessage())) .verify(); @@ -126,14 +126,14 @@ public void testInvalidUserCredential() throws Exception { } try (MockedConstruction identityClientMock = mockConstruction(IdentitySyncClient.class, (identitySyncClient, context) -> { - when(identitySyncClient.authenticateWithUsernamePassword(request, username, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); + when(identitySyncClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, badPassword)).thenThrow(new MsalServiceException("bad credential", "BadCredential")); when(identitySyncClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); when(identitySyncClient.getIdentityClientOptions()).thenReturn(new IdentityClientOptions()); })) { // test UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).password(badPassword).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).password(badPassword).build(); try { credential.getTokenSync(request); } catch (Exception e) { @@ -146,33 +146,33 @@ public void testInvalidUserCredential() throws Exception { @Test public void testInvalidParameters() throws Exception { // setup - String username = "testuser"; - String password = "fakeCredentialPlaceholder"; + String fakeUsernamePlaceholder = "fakeUsernamePlaceholder"; + String fakePasswordPlaceholder = "fakePasswordPlaceholder"; String token1 = "token1"; TokenRequestContext request = new TokenRequestContext().addScopes("https://management.azure.com"); OffsetDateTime expiresOn = OffsetDateTime.now(ZoneOffset.UTC).plusHours(1); // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(request, username, password)).thenReturn(TestUtils.getMockMsalToken(token1, expiresOn)); + when(identityClient.authenticateWithUsernamePassword(request, fakeUsernamePlaceholder, fakePasswordPlaceholder)).thenReturn(TestUtils.getMockMsalToken(token1, expiresOn)); when(identityClient.authenticateWithPublicClientCache(any(), any())) .thenAnswer(invocation -> Mono.error(new UnsupportedOperationException("nothing cached"))); })) { // test try { - new UsernamePasswordCredentialBuilder().username(username).password(password).build(); + new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(fakePasswordPlaceholder).build(); fail(); } catch (IllegalArgumentException e) { Assert.assertTrue(e.getMessage().contains("clientId")); } try { - new UsernamePasswordCredentialBuilder().clientId(clientId).username(username).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).username(fakeUsernamePlaceholder).build(); fail(); } catch (IllegalArgumentException e) { Assert.assertTrue(e.getMessage().contains("password")); } try { - new UsernamePasswordCredentialBuilder().clientId(clientId).password(password).build(); + new UsernamePasswordCredentialBuilder().clientId(clientId).password(fakePasswordPlaceholder).build(); fail(); } catch (IllegalArgumentException e) { Assert.assertTrue(e.getMessage().contains("username")); @@ -184,21 +184,21 @@ public void testInvalidParameters() throws Exception { @Test public void testValidAuthenticate() throws Exception { // setup - String username = "testuser"; - String password = "fakeCredentialPlaceholder"; + String fakeUsernamePlaceholder = "fakeUsernamePlaceholder"; + String fakePasswordPlaceholder = "fakePasswordPlaceholder"; String token1 = "token1"; TokenRequestContext request1 = new TokenRequestContext().addScopes("https://management.azure.com"); OffsetDateTime expiresAt = OffsetDateTime.now(ZoneOffset.UTC).plusHours(1); // mock try (MockedConstruction identityClientMock = mockConstruction(IdentityClient.class, (identityClient, context) -> { - when(identityClient.authenticateWithUsernamePassword(eq(request1), eq(username), eq(password))) + when(identityClient.authenticateWithUsernamePassword(eq(request1), eq(fakeUsernamePlaceholder), eq(fakePasswordPlaceholder))) .thenReturn(TestUtils.getMockMsalToken(token1, expiresAt)); })) { // test UsernamePasswordCredential credential = new UsernamePasswordCredentialBuilder().clientId(clientId) - .username(username).password(password).build(); + .username(fakeUsernamePlaceholder).password(fakePasswordPlaceholder).build(); StepVerifier.create(credential.authenticate(request1)) .expectNextMatches(authenticationRecord -> authenticationRecord.getAuthority() .equals("http://login.microsoftonline.com") @@ -212,14 +212,14 @@ public void testValidAuthenticate() throws Exception { @Test public void testAdditionalTenantNoImpact() { // setup - String username = "testuser"; - String password = "fakeCredentialPlaceholder"; + String fakeUsernamePlaceholder = "fakeUsernamePlaceholder"; + String fakePasswordPlaceholder = "fakePasswordPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().username(username).password(password) + new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(fakePasswordPlaceholder) .clientId(clientId).additionallyAllowedTenants("RANDOM").build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(e -> e.getCause() instanceof MsalServiceException) @@ -229,14 +229,14 @@ public void testAdditionalTenantNoImpact() { @Test public void testInvalidMultiTenantAuth() { // setup - String username = "testuser"; - String password = "fakeCredentialPlaceholder"; + String fakeUsernamePlaceholder = "fakeUsernamePlaceholder"; + String fakePasswordPlaceholder = "fakePasswordPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().tenantId("tenant").username(username).password(password) + new UsernamePasswordCredentialBuilder().tenantId("tenant").username(fakeUsernamePlaceholder).password(fakePasswordPlaceholder) .clientId(clientId).build(); StepVerifier.create(credential.getToken(request)) .expectErrorMatches(e -> e instanceof ClientAuthenticationException && (e.getCause().getMessage().startsWith("The current credential is not configured to"))) @@ -246,14 +246,14 @@ public void testInvalidMultiTenantAuth() { @Test public void testValidMultiTenantAuth() { // setup - String username = "testuser"; - String password = "fakeCredentialPlaceholder"; + String fakeUsernamePlaceholder = "fakeUsernamePlaceholder"; + String fakePasswordPlaceholder = "fakePasswordPlaceholder"; TokenRequestContext request = new TokenRequestContext().addScopes("https://vault.azure.net/.default") .setTenantId("newTenant"); UsernamePasswordCredential credential = - new UsernamePasswordCredentialBuilder().username(username).password(password).tenantId("tenant") + new UsernamePasswordCredentialBuilder().username(fakeUsernamePlaceholder).password(fakePasswordPlaceholder).tenantId("tenant") .clientId(clientId).additionallyAllowedTenants(IdentityUtil.ALL_TENANTS).build(); StepVerifier.create(credential.getToken(request)) diff --git a/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultCredentialPolicyTest.java b/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultCredentialPolicyTest.java index d0d1a8b03b22..1a65aba08b32 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultCredentialPolicyTest.java +++ b/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultCredentialPolicyTest.java @@ -98,7 +98,7 @@ public void setup() { this.unauthorizedHttpResponseWithoutHeader = unauthorizedResponseWithoutHeader; this.callContext = plainContext; this.differentScopeContext = differentScopeContext; - this.credential = new BasicAuthenticationCredential("user", "fakeCredentialPlaceholder"); + this.credential = new BasicAuthenticationCredential("user", "fakePasswordPlaceholder"); this.testContext = testContext; this.bodyContext = bodyContext; this.bodyFluxContext = bodyFluxContext; diff --git a/sdk/keyvault/azure-security-keyvault-certificates/src/main/java/com/azure/security/keyvault/certificates/CertificateAsyncClient.java b/sdk/keyvault/azure-security-keyvault-certificates/src/main/java/com/azure/security/keyvault/certificates/CertificateAsyncClient.java index 839e8ceb327a..8349c0b45ade 100644 --- a/sdk/keyvault/azure-security-keyvault-certificates/src/main/java/com/azure/security/keyvault/certificates/CertificateAsyncClient.java +++ b/sdk/keyvault/azure-security-keyvault-certificates/src/main/java/com/azure/security/keyvault/certificates/CertificateAsyncClient.java @@ -1085,7 +1085,7 @@ public Mono> updateCertificatePolicyWithResponse(Str *
      * CertificateIssuer issuer = new CertificateIssuer("issuerName", "providerName")
      *     .setAccountId("keyvaultuser")
-     *     .setPassword("temp2");
+     *     .setPassword("fakePasswordPlaceholder");
      * certificateAsyncClient.createIssuer(issuer)
      *     .contextWrite(Context.of(key1, value1, key2, value2))
      *     .subscribe(issuerResponse -> {
@@ -1122,7 +1122,7 @@ public Mono createIssuer(CertificateIssuer issuer) {
      * 
      * CertificateIssuer newIssuer = new CertificateIssuer("issuerName", "providerName")
      *     .setAccountId("keyvaultuser")
-     *     .setPassword("temp2");
+     *     .setPassword("fakePasswordPlaceholder");
      * certificateAsyncClient.createIssuerWithResponse(newIssuer)
      *     .contextWrite(Context.of(key1, value1, key2, value2))
      *     .subscribe(issuerResponse -> {
diff --git a/sdk/keyvault/azure-security-keyvault-certificates/src/samples/java/com/azure/security/keyvault/certificates/CertificateAsyncClientJavaDocCodeSnippets.java b/sdk/keyvault/azure-security-keyvault-certificates/src/samples/java/com/azure/security/keyvault/certificates/CertificateAsyncClientJavaDocCodeSnippets.java
index c38c02e1e7a5..aae07eaf33f3 100644
--- a/sdk/keyvault/azure-security-keyvault-certificates/src/samples/java/com/azure/security/keyvault/certificates/CertificateAsyncClientJavaDocCodeSnippets.java
+++ b/sdk/keyvault/azure-security-keyvault-certificates/src/samples/java/com/azure/security/keyvault/certificates/CertificateAsyncClientJavaDocCodeSnippets.java
@@ -196,7 +196,7 @@ public void createCertificateIssuerCodeSnippets() {
         // BEGIN: com.azure.security.keyvault.certificates.CertificateAsyncClient.createIssuer#CertificateIssuer
         CertificateIssuer issuer = new CertificateIssuer("issuerName", "providerName")
             .setAccountId("keyvaultuser")
-            .setPassword("temp2");
+            .setPassword("fakePasswordPlaceholder");
         certificateAsyncClient.createIssuer(issuer)
             .contextWrite(Context.of(key1, value1, key2, value2))
             .subscribe(issuerResponse -> {
@@ -208,7 +208,7 @@ public void createCertificateIssuerCodeSnippets() {
         // BEGIN: com.azure.security.keyvault.certificates.CertificateAsyncClient.createIssuerWithResponse#CertificateIssuer
         CertificateIssuer newIssuer = new CertificateIssuer("issuerName", "providerName")
             .setAccountId("keyvaultuser")
-            .setPassword("temp2");
+            .setPassword("fakePasswordPlaceholder");
         certificateAsyncClient.createIssuerWithResponse(newIssuer)
             .contextWrite(Context.of(key1, value1, key2, value2))
             .subscribe(issuerResponse -> {
diff --git a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java
index 01135ddc71e6..0f5fa5df4af0 100644
--- a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java
+++ b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/CertificateClientTestBase.java
@@ -389,7 +389,7 @@ void updateIssuerRunner(BiConsumer testRun
             .setAccountId("otherIssuerAccountId")
             .setEnabled(false)
             .setOrganizationId("otherOrgId")
-            .setPassword("fakeCredentialPlaceholder");
+            .setPassword("fakePasswordPlaceholder");
 
         testRunner.accept(certificateIssuer, issuerForUpdate);
     }
@@ -457,7 +457,7 @@ void listDeletedCertificatesRunner(Consumer> testRunner) {
     public abstract void importCertificate(HttpClient httpClient, CertificateServiceVersion serviceVersion);
 
     void importCertificateRunner(Consumer testRunner) {
-        String certificatePassword = "fakeCredentialPlaceholder";
+        String certificatePassword = "fakePasswordPlaceholder";
         String certificateName = testResourceNamer.randomName("importCertPkcs", 25);
         HashMap tags = new HashMap<>();
 
@@ -521,7 +521,7 @@ CertificateIssuer setupIssuer(String issuerName) {
             .setAccountId("issuerAccountId")
             .setEnabled(true)
             .setOrganizationId("orgId")
-            .setPassword("fakeCredentialPlaceholder");
+            .setPassword("fakePasswordPlaceholder");
     }
 
     String toHexString(byte[] x5t) {
diff --git a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/KeyVaultCredentialPolicyTest.java b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/KeyVaultCredentialPolicyTest.java
index 1be7857aee90..c5c9f209826a 100644
--- a/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/KeyVaultCredentialPolicyTest.java
+++ b/sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/KeyVaultCredentialPolicyTest.java
@@ -98,7 +98,7 @@ public void setup() {
         this.unauthorizedHttpResponseWithoutHeader = unauthorizedResponseWithoutHeader;
         this.callContext = plainContext;
         this.differentScopeContext = differentScopeContext;
-        this.credential = new BasicAuthenticationCredential("user", "fakeCredentialPlaceholder");
+        this.credential = new BasicAuthenticationCredential("user", "fakePasswordPlaceholder");
         this.testContext = testContext;
         this.bodyContext = bodyContext;
         this.bodyFluxContext = bodyFluxContext;
diff --git a/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyVaultCredentialPolicyTest.java b/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyVaultCredentialPolicyTest.java
index 7b13fbc2f721..4dd74d3a11a5 100644
--- a/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyVaultCredentialPolicyTest.java
+++ b/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyVaultCredentialPolicyTest.java
@@ -98,7 +98,7 @@ public void setup() {
         this.unauthorizedHttpResponseWithoutHeader = unauthorizedResponseWithoutHeader;
         this.callContext = plainContext;
         this.differentScopeContext = differentScopeContext;
-        this.credential = new BasicAuthenticationCredential("user", "fakeCredentialPlaceholder");
+        this.credential = new BasicAuthenticationCredential("user", "fakePasswordPlaceholder");
         this.testContext = testContext;
         this.bodyContext = bodyContext;
         this.bodyFluxContext = bodyFluxContext;
diff --git a/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/HelloWorldAsync.java b/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/HelloWorldAsync.java
index bc189863076c..91a114dd8201 100644
--- a/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/HelloWorldAsync.java
+++ b/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/HelloWorldAsync.java
@@ -35,7 +35,7 @@ public static void main(String[] args) throws InterruptedException {
 
         // Let's create a secret holding bank account credentials valid for 1 year. If the secret already exists in the
         // key vault, then a new version of the secret is created.
-        secretAsyncClient.setSecret(new KeyVaultSecret("BankAccountPassword", "fakeCredentialPlaceholder")
+        secretAsyncClient.setSecret(new KeyVaultSecret("BankAccountPassword", "fakePasswordPlaceholder")
             .setProperties(new SecretProperties()
                 .setExpiresOn(OffsetDateTime.now().plusYears(1))))
             .subscribe(secretResponse ->
@@ -70,7 +70,7 @@ public static void main(String[] args) throws InterruptedException {
         // Bank forced a password update for security purposes. Let's change the value of the secret in the key vault.
         // To achieve this, we need to create a new version of the secret in the key vault. The update operation cannot
         // change the value of the secret.
-        secretAsyncClient.setSecret("BankAccountPassword", "fakeCredentialPlaceholder")
+        secretAsyncClient.setSecret("BankAccountPassword", "fakePasswordPlaceholder")
             .subscribe(secretResponse ->
                 System.out.printf("Secret is created with name %s and value %s %n", secretResponse.getName(),
                     secretResponse.getValue()));
diff --git a/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/ListOperations.java b/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/ListOperations.java
index 18a0badf1d0c..832dc68f830d 100644
--- a/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/ListOperations.java
+++ b/sdk/keyvault/azure-security-keyvault-secrets/src/samples/java/com/azure/security/keyvault/secrets/ListOperations.java
@@ -36,11 +36,11 @@ public static void main(String[] args) throws IllegalArgumentException {
 
         // Let's create secrets holding storage and bank accounts credentials valid for 1 year. If the secret
         // already exists in the key vault, then a new version of the secret is created.
-        client.setSecret(new KeyVaultSecret("StorageAccountPassword", "f4G34fMh8v-fdsgjsk2323=-asdsdfsdf")
+        client.setSecret(new KeyVaultSecret("StorageAccountPassword", "fakePasswordPlaceholder")
             .setProperties(new SecretProperties()
                 .setExpiresOn(OffsetDateTime.now().plusYears(1))));
 
-        client.setSecret(new KeyVaultSecret("BankAccountPassword", "f4G34fMh8v")
+        client.setSecret(new KeyVaultSecret("BankAccountPassword", "fakePasswordPlaceholder")
             .setProperties(new SecretProperties()
                 .setExpiresOn(OffsetDateTime.now().plusYears(1))));
 
@@ -56,7 +56,7 @@ public static void main(String[] args) throws IllegalArgumentException {
 
         // The bank account password got updated, so you want to update the secret in key vault to ensure it reflects the new password.
         // Calling setSecret on an existing secret creates a new version of the secret in the key vault with the new value.
-        client.setSecret("BankAccountPassword", "sskdjfsdasdjsd");
+        client.setSecret("BankAccountPassword", "fakePasswordPlaceholder");
 
         // You need to check all the different values your bank account password secret had previously. Lets print all the versions of this secret.
         for (SecretProperties secret : client.listPropertiesOfSecretVersions("BankAccountPassword")) {
diff --git a/sdk/keyvault/azure-security-keyvault-secrets/src/test/java/com/azure/security/keyvault/secrets/KeyVaultCredentialPolicyTest.java b/sdk/keyvault/azure-security-keyvault-secrets/src/test/java/com/azure/security/keyvault/secrets/KeyVaultCredentialPolicyTest.java
index fe015a1cbf9e..28902350e20d 100644
--- a/sdk/keyvault/azure-security-keyvault-secrets/src/test/java/com/azure/security/keyvault/secrets/KeyVaultCredentialPolicyTest.java
+++ b/sdk/keyvault/azure-security-keyvault-secrets/src/test/java/com/azure/security/keyvault/secrets/KeyVaultCredentialPolicyTest.java
@@ -98,7 +98,7 @@ public void setup() {
         this.unauthorizedHttpResponseWithoutHeader = unauthorizedResponseWithoutHeader;
         this.callContext = plainContext;
         this.differentScopeContext = differentScopeContext;
-        this.credential = new BasicAuthenticationCredential("user", "fakeCredentialPlaceholder");
+        this.credential = new BasicAuthenticationCredential("user", "fakePasswordPlaceholder");
         this.testContext = testContext;
         this.bodyContext = bodyContext;
         this.bodyFluxContext = bodyFluxContext;
diff --git a/sdk/keyvault/microsoft-azure-keyvault/src/test/java/com/microsoft/azure/keyvault/test/CertificateOperationsTest.java b/sdk/keyvault/microsoft-azure-keyvault/src/test/java/com/microsoft/azure/keyvault/test/CertificateOperationsTest.java
index 5efdd67d90c6..74035b6f50bf 100644
--- a/sdk/keyvault/microsoft-azure-keyvault/src/test/java/com/microsoft/azure/keyvault/test/CertificateOperationsTest.java
+++ b/sdk/keyvault/microsoft-azure-keyvault/src/test/java/com/microsoft/azure/keyvault/test/CertificateOperationsTest.java
@@ -551,7 +551,7 @@ public void certificateAsyncRequestCancellationForCertificateOperationsTest() th
     @Test
     public void importCertificatePkcs12ForCertificateOperationsTest() throws Exception {
         String certificateContent = readCertificate("pkcs12_base64_testdata.cer");
-        String certificatePassword = "123";
+        String certificatePassword = "fakePasswordPlaceholder";
 
         // Set content type to indicate the certificate is PKCS12 format.
         SecretProperties secretProperties = new SecretProperties().withContentType(MIME_PKCS12);
@@ -615,7 +615,7 @@ public void importCertificatePkcs12ForCertificateOperationsTest() throws Excepti
     @Test
     public void certificateUpdateForCertificateOperationsTest() throws Exception {
         String certificateContent = readCertificate("pkcs12_base64_testdata.cer");
-        String certificatePassword = "123";
+        String certificatePassword = "fakePasswordPlaceholder";
 
         // Set content type to indicate the certificate is PKCS12 format.
         SecretProperties secretProperties = new SecretProperties().withContentType(MIME_PKCS12);
@@ -668,7 +668,7 @@ public void certificateUpdateForCertificateOperationsTest() throws Exception {
     public void listCertificatesForCertificateOperationsTest() throws Exception {
         String certificateName = "listCertificate";
         String certificateContent = readCertificate("pkcs12_base64_testdata.cer");
-        String certificatePassword = "123";
+        String certificatePassword = "fakePasswordPlaceholder";
 
         // Set content type to indicate the certificate is PKCS12 format.
         SecretProperties secretProperties = new SecretProperties();
@@ -732,7 +732,7 @@ public void listCertificatesForCertificateOperationsTest() throws Exception {
     public void listCertificateVersionsForCertificateOperationsTest() throws Exception {
         String certificateName = "listCertificateVersions";
         String certificateContent = readCertificate("pkcs12_base64_testdata.cer");
-        String certificatePassword = "123";
+        String certificatePassword = "fakePasswordPlaceholder";
 
         // Set content type to indicate the certificate is PKCS12 format.
         SecretProperties secretProperties = new SecretProperties();
diff --git a/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md b/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md
index 9a21235add10..578b2b1e7296 100644
--- a/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md
+++ b/sdk/labservices/azure-resourcemanager-labservices/SAMPLE.md
@@ -1064,7 +1064,7 @@ public final class VirtualMachinesResetPasswordSamples {
         manager
             .virtualMachines()
             .resetPassword(
-                "fakeCredentialPlaceholder",
+                "fakeResourceGroupNamePlaceholder",
                 "testlab",
                 "template",
                 new ResetPasswordBody().withUsername("example-username").withPassword("example-password"),
diff --git a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java
index c393e056ca11..88654cef380a 100644
--- a/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java
+++ b/sdk/metricsadvisor/azure-ai-metricsadvisor/src/test/java/com/azure/ai/metricsadvisor/NotificationHookTestBase.java
@@ -66,7 +66,7 @@ protected static class CreateWebHookInput {
         String description = "alert_us!";
         String externalLink = "https://github.com/Azure/azure-sdk-for-java/wiki";
         String username = "username";
-        String fakePasswordPlaceholder = "fakeCredentialPlaceholder";
+        String fakePasswordPlaceholder = "fakePasswordPlaceholder";
         HttpHeaders httpHeaders = new HttpHeaders()
             .put("x-contoso-id", "123")
             .put("x-contoso-name", "contoso");
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 0b53d70c68aa..fc024f4a23a5 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
@@ -142,7 +142,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw
                         .withNewPrimaryPublicIPAddress(Utils.randomResourceName(azureResourceManager, "empip-", 20))
                         .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER)
                         .withAdminUsername("testuser")
-                        .withAdminPassword("fakeCredentialPlaceholder")
+                        .withAdminPassword("fakePasswordPlaceholder")
                         .withSize(VirtualMachineSizeTypes.fromString("Standard_D2a_v4"))
                         .create();
             System.out.println("Virtual machine created");
@@ -224,7 +224,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw
                         .withNewPrimaryPublicIPAddress(Utils.randomResourceName(azureResourceManager, "ptnerpip-", 20))
                         .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER)
                         .withAdminUsername("testuser")
-                        .withAdminPassword("fakeCredentialPlaceholder")
+                        .withAdminPassword("fakePasswordPlaceholder")
                         .withSize(VirtualMachineSizeTypes.fromString("Standard_D2a_v4"))
                         .create();
             System.out.println("Virtual machine created");
diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetAadProfileSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetAadProfileSamples.java
index 2d448acea0d5..4fd9bca3a51b 100644
--- a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetAadProfileSamples.java
+++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/containerservice/generated/ManagedClustersResetAadProfileSamples.java
@@ -29,7 +29,7 @@ public static void resetAADProfile(com.azure.resourcemanager.AzureResourceManage
                 new ManagedClusterAadProfile()
                     .withClientAppId("clientappid")
                     .withServerAppId("serverappid")
-                    .withServerAppSecret("serverappsecret")
+                    .withServerAppSecret("fakeServerAppSecretPlaceholder")
                     .withTenantId("tenantid"),
                 Context.NONE);
     }
diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java
index 8fbc6322fd35..773165b22680 100644
--- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java
+++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java
@@ -54,7 +54,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc
                     virtualMachines.manager().resourceManager().internalContext().randomResourceName("pip", 20))
                 .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER)
                 .withAdminUsername("testuser")
-                .withAdminPassword("fakeCredentialPlaceholder")
+                .withAdminPassword("fakePasswordPlaceholder")
                 .withSize(VirtualMachineSizeTypes.fromString("Standard_D2a_v4"))
                 .withNewStorageAccount(storageCreatable)
                 .withNewAvailabilitySet(virtualMachines.manager().resourceManager().internalContext().randomResourceName("avset", 10))
diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java
index 9c1d09c57f65..6ed7da9ffe0d 100644
--- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java
+++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java
@@ -26,7 +26,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc
                 .withoutPrimaryPublicIPAddress()
                 .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER)
                 .withAdminUsername("testuser")
-                .withAdminPassword("fakeCredentialPlaceholder")
+                .withAdminPassword("fakePasswordPlaceholder")
                 .withUnmanagedDisks()
                 .withNewUnmanagedDataDisk(30)
                 .defineUnmanagedDataDisk("disk2")
diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java
index e118d7d65f9d..764b92f1c2d0 100644
--- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java
+++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java
@@ -30,7 +30,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc
                 .withoutPrimaryPublicIPAddress()
                 .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER)
                 .withAdminUsername("testuser")
-                .withAdminPassword("fakeCredentialPlaceholder")
+                .withAdminPassword("fakePasswordPlaceholder")
                 .withSize(availableSize.name()) // Use the first size
                 .create();
 
diff --git a/sdk/resourcemanager/docs/SAMPLE.md b/sdk/resourcemanager/docs/SAMPLE.md
index 569ed5acad55..6e0b0aafa7eb 100644
--- a/sdk/resourcemanager/docs/SAMPLE.md
+++ b/sdk/resourcemanager/docs/SAMPLE.md
@@ -355,7 +355,7 @@ SqlServer sqlServer = azure.sqlServers().define(sqlServerName)
     .withRegion(Region.US_EAST)
     .withNewResourceGroup(rgName)
     .withAdministratorLogin("fakeAdminLoginPlaceholder")
-    .withAdministratorPassword("fakeCredentialPlaceholder")
+    .withAdministratorPassword("fakePasswordPlaceholder")
     .withNewFirewallRule("10.0.0.1")
     .withNewFirewallRule("10.2.0.1", "10.2.0.10")
     .create();
diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java
index 1fa7dc45a015..73a2268bd8f7 100644
--- a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java
+++ b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestResourceStreaming.java
@@ -55,7 +55,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc
                     virtualMachines.manager().resourceManager().internalContext().randomResourceName("pip", 20))
                 .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER)
                 .withAdminUsername("testuser")
-                .withAdminPassword("fakeCredentialPlaceholder")
+                .withAdminPassword("fakePasswordPlaceholder")
                 .withSize(VirtualMachineSizeTypes.fromString("Standard_D2a_v4"))
                 .withNewStorageAccount(storageCreatable)
                 .withNewAvailabilitySet(virtualMachines.manager().resourceManager().internalContext().randomResourceName("avset", 10))
diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java
index 84d606fa04a3..5f9ad254e2ad 100644
--- a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java
+++ b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineDataDisk.java
@@ -27,7 +27,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc
                 .withoutPrimaryPublicIPAddress()
                 .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER)
                 .withAdminUsername("testuser")
-                .withAdminPassword("fakeCredentialPlaceholder")
+                .withAdminPassword("fakePasswordPlaceholder")
                 .withUnmanagedDisks()
                 .withNewUnmanagedDataDisk(30)
                 .defineUnmanagedDataDisk("disk2")
diff --git a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java
index 5ff4dd859e7b..c8bb2e5c2369 100644
--- a/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java
+++ b/sdk/resourcemanagerhybrid/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSizes.java
@@ -31,7 +31,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc
                 .withoutPrimaryPublicIPAddress()
                 .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER)
                 .withAdminUsername("testuser")
-                .withAdminPassword("fakeCredentialPlaceholder")
+                .withAdminPassword("fakePasswordPlaceholder")
                 .withSize(availableSize.name()) // Use the first size
                 .create();
 
diff --git a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/DataSourceSyncTests.java b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/DataSourceSyncTests.java
index db0eacc18cfe..13d415b25f8c 100644
--- a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/DataSourceSyncTests.java
+++ b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/DataSourceSyncTests.java
@@ -39,7 +39,7 @@ public class DataSourceSyncTests extends SearchTestBase {
     private static final String FAKE_COSMOS_CONNECTION_STRING =
         "AccountEndpoint=https://NotaRealAccount.documents.azure.com;AccountKey=fake;Database=someFakeDatabase";
     public static final String FAKE_AZURE_SQL_CONNECTION_STRING =
-        "Server=tcp:fakeUri,1433;Database=fakeDatabase;User ID=reader;Password=fakePassword;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;";
+        "Server=tcp:fakeUri,1433;Database=fakeDatabase;User ID=reader;Password=fakePasswordPlaceholder;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;";
 
     private final List dataSourcesToDelete = new ArrayList<>();
     private SearchIndexerClient client;
diff --git a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/SearchIndexClientBuilderTests.java b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/SearchIndexClientBuilderTests.java
index be2b3bbc623f..9b06bef041a9 100644
--- a/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/SearchIndexClientBuilderTests.java
+++ b/sdk/search/azure-search-documents/src/test/java/com/azure/search/documents/indexes/SearchIndexClientBuilderTests.java
@@ -39,7 +39,7 @@
 import static org.junit.jupiter.api.Assertions.assertTrue;
 
 public class SearchIndexClientBuilderTests {
-    private final AzureKeyCredential searchApiKeyCredential = new AzureKeyCredential("fakeCredentialPlaceholder");
+    private final AzureKeyCredential searchApiKeyCredential = new AzureKeyCredential("fakeApiKeyPlaceholder");
     private final String searchEndpoint = "https://test.search.windows.net";
     private final SearchServiceVersion apiVersion = SearchServiceVersion.V2020_06_30;
 
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/samples/java/com/azure/resourcemanager/servicelinker/CreateServiceLinker.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/samples/java/com/azure/resourcemanager/servicelinker/CreateServiceLinker.java
index 1e5fbb9bd19d..2f659209784b 100644
--- a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/samples/java/com/azure/resourcemanager/servicelinker/CreateServiceLinker.java
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/samples/java/com/azure/resourcemanager/servicelinker/CreateServiceLinker.java
@@ -76,7 +76,7 @@ private static void createSpringCloudAndSQLConnection(AzureResourceManager azure
         String sqlServerName = "sqlserver" + randomString(8);
         String sqlDatabaseName = "sqldb" + randomString(8);
         String sqlUserName = "fakeNamePlaceholder" + randomString(8);
-        String sqlPassword = "fakeCredentialPlaceholder" + randomString(8);
+        String sqlPassword = "fakePasswordPlaceholder" + randomString(8);
 
         SpringService springService = azureResourceManager.springServices().define(springServiceName)
             .withRegion(region)
diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
index 7673cf36c215..1075a8309f63 100644
--- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
+++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
@@ -77,7 +77,7 @@ protected void usGovCloudShouldWorkWithUsernamePasswordCredential() {
                 getPropertyPrefix() + ".profile.cloud-type=AZURE_US_GOVERNMENT",
                 getPropertyPrefix() + ".credential.client-id=fake-client-id",
                 getPropertyPrefix() + ".credential.username=fakeNamePlaceholder",
-                getPropertyPrefix() + ".credential.password=fakeCredentialPlaceholder"
+                getPropertyPrefix() + ".credential.password=fakePasswordPlaceholder"
             )
             .withConfiguration(AutoConfigurations.of(
                 AzureTokenCredentialAutoConfiguration.class,
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/AutoBackupSettingsTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/AutoBackupSettingsTests.java
index 35c50a3ee7ff..e1c368795e29 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/AutoBackupSettingsTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/AutoBackupSettingsTests.java
@@ -19,15 +19,15 @@ public void testDeserialize() {
         AutoBackupSettings model =
             BinaryData
                 .fromString(
-                    "{\"enable\":false,\"enableEncryption\":true,\"retentionPeriod\":1821646506,\"storageAccountUrl\":\"xw\",\"storageContainerName\":\"pwhonowkg\",\"storageAccessKey\":\"wankixzbi\",\"password\":\"eputtmrywnuzoqf\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[\"Saturday\",\"Monday\",\"Sunday\",\"Tuesday\"],\"fullBackupStartTime\":798441434,\"fullBackupWindowHours\":1495315655,\"logBackupFrequency\":1368622267}")
+                    "{\"enable\":false,\"enableEncryption\":true,\"retentionPeriod\":1821646506,\"storageAccountUrl\":\"xw\",\"storageContainerName\":\"pwhonowkg\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[\"Saturday\",\"Monday\",\"Sunday\",\"Tuesday\"],\"fullBackupStartTime\":798441434,\"fullBackupWindowHours\":1495315655,\"logBackupFrequency\":1368622267}")
                 .toObject(AutoBackupSettings.class);
         Assertions.assertEquals(false, model.enable());
         Assertions.assertEquals(true, model.enableEncryption());
         Assertions.assertEquals(1821646506, model.retentionPeriod());
         Assertions.assertEquals("xw", model.storageAccountUrl());
         Assertions.assertEquals("pwhonowkg", model.storageContainerName());
-        Assertions.assertEquals("wankixzbi", model.storageAccessKey());
-        Assertions.assertEquals("eputtmrywnuzoqf", model.password());
+        Assertions.assertEquals("fakeStorageAccessKeyPlaceholder", model.storageAccessKey());
+        Assertions.assertEquals("fakePasswordPlaceholder", model.password());
         Assertions.assertEquals(true, model.backupSystemDbs());
         Assertions.assertEquals(BackupScheduleType.AUTOMATED, model.backupScheduleType());
         Assertions.assertEquals(FullBackupFrequencyType.DAILY, model.fullBackupFrequency());
@@ -46,8 +46,8 @@ public void testSerialize() {
                 .withRetentionPeriod(1821646506)
                 .withStorageAccountUrl("xw")
                 .withStorageContainerName("pwhonowkg")
-                .withStorageAccessKey("wankixzbi")
-                .withPassword("eputtmrywnuzoqf")
+                .withStorageAccessKey("fakeStorageAccessKeyPlaceholder")
+                .withPassword("fakePasswordPlaceholder")
                 .withBackupSystemDbs(true)
                 .withBackupScheduleType(BackupScheduleType.AUTOMATED)
                 .withFullBackupFrequency(FullBackupFrequencyType.DAILY)
@@ -67,8 +67,8 @@ public void testSerialize() {
         Assertions.assertEquals(1821646506, model.retentionPeriod());
         Assertions.assertEquals("xw", model.storageAccountUrl());
         Assertions.assertEquals("pwhonowkg", model.storageContainerName());
-        Assertions.assertEquals("wankixzbi", model.storageAccessKey());
-        Assertions.assertEquals("eputtmrywnuzoqf", model.password());
+        Assertions.assertEquals("fakeStorageAccessKeyPlaceholder", model.storageAccessKey());
+        Assertions.assertEquals("fakePasswordPlaceholder", model.password());
         Assertions.assertEquals(true, model.backupSystemDbs());
         Assertions.assertEquals(BackupScheduleType.AUTOMATED, model.backupScheduleType());
         Assertions.assertEquals(FullBackupFrequencyType.DAILY, model.fullBackupFrequency());
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/ServerConfigurationsManagementSettingsTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/ServerConfigurationsManagementSettingsTests.java
index 4f70d04ce866..daca73a14896 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/ServerConfigurationsManagementSettingsTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/ServerConfigurationsManagementSettingsTests.java
@@ -23,12 +23,12 @@ public void testDeserialize() {
         ServerConfigurationsManagementSettings model =
             BinaryData
                 .fromString(
-                    "{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PRIVATE\",\"port\":731084227,\"sqlAuthUpdateUserName\":\"pewr\",\"sqlAuthUpdatePassword\":\"mwvvjektcxsenhw\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":842863771,\"startingDeviceId\":2007426179,\"diskConfigurationType\":\"ADD\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":false},\"sqlInstanceSettings\":{\"collation\":\"iqylihkaetck\",\"maxDop\":385263599,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":533172139,\"maxServerMemoryMB\":1960016252,\"isLpimEnabled\":true,\"isIfiEnabled\":true}}")
+                    "{\"sqlConnectivityUpdateSettings\":{\"connectivityType\":\"PRIVATE\",\"port\":731084227,\"sqlAuthUpdateUserName\":\"fakeSqlAuthUpdateUsernamePlaceholder\",\"sqlAuthUpdatePassword\":\"fakeSqlAuthUpdatePasswordPlaceholder\"},\"sqlWorkloadTypeUpdateSettings\":{\"sqlWorkloadType\":\"DW\"},\"sqlStorageUpdateSettings\":{\"diskCount\":842863771,\"startingDeviceId\":2007426179,\"diskConfigurationType\":\"ADD\"},\"additionalFeaturesServerConfigurations\":{\"isRServicesEnabled\":false},\"sqlInstanceSettings\":{\"collation\":\"iqylihkaetck\",\"maxDop\":385263599,\"isOptimizeForAdHocWorkloadsEnabled\":false,\"minServerMemoryMB\":533172139,\"maxServerMemoryMB\":1960016252,\"isLpimEnabled\":true,\"isIfiEnabled\":true}}")
                 .toObject(ServerConfigurationsManagementSettings.class);
         Assertions.assertEquals(ConnectivityType.PRIVATE, model.sqlConnectivityUpdateSettings().connectivityType());
         Assertions.assertEquals(731084227, model.sqlConnectivityUpdateSettings().port());
-        Assertions.assertEquals("pewr", model.sqlConnectivityUpdateSettings().sqlAuthUpdateUsername());
-        Assertions.assertEquals("mwvvjektcxsenhw", model.sqlConnectivityUpdateSettings().sqlAuthUpdatePassword());
+        Assertions.assertEquals("fakeSqlAuthUpdateUsernamePlaceholder", model.sqlConnectivityUpdateSettings().sqlAuthUpdateUsername());
+        Assertions.assertEquals("fakeSqlAuthUpdatePasswordPlaceholder", model.sqlConnectivityUpdateSettings().sqlAuthUpdatePassword());
         Assertions.assertEquals(SqlWorkloadType.DW, model.sqlWorkloadTypeUpdateSettings().sqlWorkloadType());
         Assertions.assertEquals(842863771, model.sqlStorageUpdateSettings().diskCount());
         Assertions.assertEquals(2007426179, model.sqlStorageUpdateSettings().startingDeviceId());
@@ -51,8 +51,8 @@ public void testSerialize() {
                     new SqlConnectivityUpdateSettings()
                         .withConnectivityType(ConnectivityType.PRIVATE)
                         .withPort(731084227)
-                        .withSqlAuthUpdateUsername("pewr")
-                        .withSqlAuthUpdatePassword("mwvvjektcxsenhw"))
+                        .withSqlAuthUpdateUsername("fakeSqlAuthUpdateUsernamePlaceholder")
+                        .withSqlAuthUpdatePassword("fakeSqlAuthUpdatePasswordPlaceholder"))
                 .withSqlWorkloadTypeUpdateSettings(
                     new SqlWorkloadTypeUpdateSettings().withSqlWorkloadType(SqlWorkloadType.DW))
                 .withSqlStorageUpdateSettings(
@@ -74,8 +74,8 @@ public void testSerialize() {
         model = BinaryData.fromObject(model).toObject(ServerConfigurationsManagementSettings.class);
         Assertions.assertEquals(ConnectivityType.PRIVATE, model.sqlConnectivityUpdateSettings().connectivityType());
         Assertions.assertEquals(731084227, model.sqlConnectivityUpdateSettings().port());
-        Assertions.assertEquals("pewr", model.sqlConnectivityUpdateSettings().sqlAuthUpdateUsername());
-        Assertions.assertEquals("mwvvjektcxsenhw", model.sqlConnectivityUpdateSettings().sqlAuthUpdatePassword());
+        Assertions.assertEquals("fakeSqlAuthUpdateUsernamePlaceholder", model.sqlConnectivityUpdateSettings().sqlAuthUpdateUsername());
+        Assertions.assertEquals("fakeSqlAuthUpdatePasswordPlaceholder", model.sqlConnectivityUpdateSettings().sqlAuthUpdatePassword());
         Assertions.assertEquals(SqlWorkloadType.DW, model.sqlWorkloadTypeUpdateSettings().sqlWorkloadType());
         Assertions.assertEquals(842863771, model.sqlStorageUpdateSettings().diskCount());
         Assertions.assertEquals(2007426179, model.sqlStorageUpdateSettings().startingDeviceId());
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlConnectivityUpdateSettingsTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlConnectivityUpdateSettingsTests.java
index 24c412792a14..e432c64921e2 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlConnectivityUpdateSettingsTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlConnectivityUpdateSettingsTests.java
@@ -16,12 +16,12 @@ public void testDeserialize() {
         SqlConnectivityUpdateSettings model =
             BinaryData
                 .fromString(
-                    "{\"connectivityType\":\"PRIVATE\",\"port\":639676552,\"sqlAuthUpdateUserName\":\"fbebrjcxer\",\"sqlAuthUpdatePassword\":\"wutttxfvjrbi\"}")
+                    "{\"connectivityType\":\"PRIVATE\",\"port\":639676552,\"sqlAuthUpdateUserName\":\"fakeSqlAuthUpdateUsernamePlaceholder\",\"sqlAuthUpdatePassword\":\"fakeSqlAuthUpdatePasswordPlaceholder\"}")
                 .toObject(SqlConnectivityUpdateSettings.class);
         Assertions.assertEquals(ConnectivityType.PRIVATE, model.connectivityType());
         Assertions.assertEquals(639676552, model.port());
-        Assertions.assertEquals("fbebrjcxer", model.sqlAuthUpdateUsername());
-        Assertions.assertEquals("wutttxfvjrbi", model.sqlAuthUpdatePassword());
+        Assertions.assertEquals("fakeSqlAuthUpdateUsernamePlaceholder", model.sqlAuthUpdateUsername());
+        Assertions.assertEquals("fakeSqlAuthUpdatePasswordPlaceholder", model.sqlAuthUpdatePassword());
     }
 
     @Test
@@ -30,12 +30,12 @@ public void testSerialize() {
             new SqlConnectivityUpdateSettings()
                 .withConnectivityType(ConnectivityType.PRIVATE)
                 .withPort(639676552)
-                .withSqlAuthUpdateUsername("fbebrjcxer")
-                .withSqlAuthUpdatePassword("wutttxfvjrbi");
+                .withSqlAuthUpdateUsername("fakeSqlAuthUpdateUsernamePlaceholder")
+                .withSqlAuthUpdatePassword("fakeSqlAuthUpdatePasswordPlaceholder");
         model = BinaryData.fromObject(model).toObject(SqlConnectivityUpdateSettings.class);
         Assertions.assertEquals(ConnectivityType.PRIVATE, model.connectivityType());
         Assertions.assertEquals(639676552, model.port());
-        Assertions.assertEquals("fbebrjcxer", model.sqlAuthUpdateUsername());
-        Assertions.assertEquals("wutttxfvjrbi", model.sqlAuthUpdatePassword());
+        Assertions.assertEquals("fakeSqlAuthUpdateUsernamePlaceholder", model.sqlAuthUpdateUsername());
+        Assertions.assertEquals("fakeSqlAuthUpdatePasswordPlaceholder", model.sqlAuthUpdatePassword());
     }
 }
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupPropertiesTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupPropertiesTests.java
index 230f1a413e5e..92a4fa5fd9b5 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupPropertiesTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupPropertiesTests.java
@@ -18,7 +18,7 @@ public void testDeserialize() {
         SqlVirtualMachineGroupProperties model =
             BinaryData
                 .fromString(
-                    "{\"provisioningState\":\"g\",\"sqlImageOffer\":\"tnwu\",\"sqlImageSku\":\"Developer\",\"scaleType\":\"HA\",\"clusterManagerType\":\"WSFC\",\"clusterConfiguration\":\"Domainful\",\"wsfcDomainProfile\":{\"domainFqdn\":\"ckyfih\",\"ouPath\":\"idf\",\"clusterBootstrapAccount\":\"wdzuhtymwisd\",\"clusterOperatorAccount\":\"thwxmnteiwaopvkm\",\"sqlServiceAccount\":\"c\",\"fileShareWitnessPath\":\"xdcu\",\"storageAccountUrl\":\"fsrpymzidnse\",\"storageAccountPrimaryKey\":\"xtbzsgfyccsne\",\"clusterSubnetType\":\"MultiSubnet\"}}")
+                    "{\"provisioningState\":\"g\",\"sqlImageOffer\":\"tnwu\",\"sqlImageSku\":\"Developer\",\"scaleType\":\"HA\",\"clusterManagerType\":\"WSFC\",\"clusterConfiguration\":\"Domainful\",\"wsfcDomainProfile\":{\"domainFqdn\":\"ckyfih\",\"ouPath\":\"idf\",\"clusterBootstrapAccount\":\"wdzuhtymwisd\",\"clusterOperatorAccount\":\"thwxmnteiwaopvkm\",\"sqlServiceAccount\":\"c\",\"fileShareWitnessPath\":\"xdcu\",\"storageAccountUrl\":\"fsrpymzidnse\",\"storageAccountPrimaryKey\":\"fakeStorageAccountPrimaryKeyPlaceholder\",\"clusterSubnetType\":\"MultiSubnet\"}}")
                 .toObject(SqlVirtualMachineGroupProperties.class);
         Assertions.assertEquals("tnwu", model.sqlImageOffer());
         Assertions.assertEquals(SqlVmGroupImageSku.DEVELOPER, model.sqlImageSku());
@@ -29,7 +29,7 @@ public void testDeserialize() {
         Assertions.assertEquals("c", model.wsfcDomainProfile().sqlServiceAccount());
         Assertions.assertEquals("xdcu", model.wsfcDomainProfile().fileShareWitnessPath());
         Assertions.assertEquals("fsrpymzidnse", model.wsfcDomainProfile().storageAccountUrl());
-        Assertions.assertEquals("xtbzsgfyccsne", model.wsfcDomainProfile().storageAccountPrimaryKey());
+        Assertions.assertEquals("fakeStorageAccountPrimaryKeyPlaceholder", model.wsfcDomainProfile().storageAccountPrimaryKey());
         Assertions.assertEquals(ClusterSubnetType.MULTI_SUBNET, model.wsfcDomainProfile().clusterSubnetType());
     }
 
@@ -48,7 +48,7 @@ public void testSerialize() {
                         .withSqlServiceAccount("c")
                         .withFileShareWitnessPath("xdcu")
                         .withStorageAccountUrl("fsrpymzidnse")
-                        .withStorageAccountPrimaryKey("xtbzsgfyccsne")
+                        .withStorageAccountPrimaryKey("fakeStorageAccountPrimaryKeyPlaceholder")
                         .withClusterSubnetType(ClusterSubnetType.MULTI_SUBNET));
         model = BinaryData.fromObject(model).toObject(SqlVirtualMachineGroupProperties.class);
         Assertions.assertEquals("tnwu", model.sqlImageOffer());
@@ -60,7 +60,7 @@ public void testSerialize() {
         Assertions.assertEquals("c", model.wsfcDomainProfile().sqlServiceAccount());
         Assertions.assertEquals("xdcu", model.wsfcDomainProfile().fileShareWitnessPath());
         Assertions.assertEquals("fsrpymzidnse", model.wsfcDomainProfile().storageAccountUrl());
-        Assertions.assertEquals("xtbzsgfyccsne", model.wsfcDomainProfile().storageAccountPrimaryKey());
+        Assertions.assertEquals("fakeStorageAccountPrimaryKeyPlaceholder", model.wsfcDomainProfile().storageAccountPrimaryKey());
         Assertions.assertEquals(ClusterSubnetType.MULTI_SUBNET, model.wsfcDomainProfile().clusterSubnetType());
     }
 }
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsCreateOrUpdateTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsCreateOrUpdateTests.java
index 688de6948753..3dd50593dece 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsCreateOrUpdateTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsCreateOrUpdateTests.java
@@ -36,7 +36,7 @@ public void testCreateOrUpdate() throws Exception {
         ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class);
 
         String responseStr =
-            "{\"properties\":{\"provisioningState\":\"Succeeded\",\"sqlImageOffer\":\"aboekqv\",\"sqlImageSku\":\"Developer\",\"scaleType\":\"HA\",\"clusterManagerType\":\"WSFC\",\"clusterConfiguration\":\"Domainful\",\"wsfcDomainProfile\":{\"domainFqdn\":\"jsflhhcaalnjix\",\"ouPath\":\"xyawj\",\"clusterBootstrapAccount\":\"aq\",\"clusterOperatorAccount\":\"lyjpk\",\"sqlServiceAccount\":\"dzyexznelixh\",\"fileShareWitnessPath\":\"ztfolhbnxk\",\"storageAccountUrl\":\"laulppg\",\"storageAccountPrimaryKey\":\"tpnapnyiropuhpig\",\"clusterSubnetType\":\"MultiSubnet\"}},\"location\":\"lgqg\",\"tags\":{\"zhxgktrmgucn\":\"medjvcslynqwwncw\",\"llwptfdy\":\"pkteo\",\"rhhuaopppcqeqx\":\"pfqbuaceopzf\"},\"id\":\"lzdahzxctobgbkdm\",\"name\":\"izpost\",\"type\":\"grcfb\"}";
+            "{\"properties\":{\"provisioningState\":\"Succeeded\",\"sqlImageOffer\":\"aboekqv\",\"sqlImageSku\":\"Developer\",\"scaleType\":\"HA\",\"clusterManagerType\":\"WSFC\",\"clusterConfiguration\":\"Domainful\",\"wsfcDomainProfile\":{\"domainFqdn\":\"jsflhhcaalnjix\",\"ouPath\":\"xyawj\",\"clusterBootstrapAccount\":\"aq\",\"clusterOperatorAccount\":\"lyjpk\",\"sqlServiceAccount\":\"dzyexznelixh\",\"fileShareWitnessPath\":\"ztfolhbnxk\",\"storageAccountUrl\":\"laulppg\",\"storageAccountPrimaryKey\":\"fakeStorageAccountPrimaryKeyPlaceholder\",\"clusterSubnetType\":\"MultiSubnet\"}},\"location\":\"lgqg\",\"tags\":{\"zhxgktrmgucn\":\"medjvcslynqwwncw\",\"llwptfdy\":\"pkteo\",\"rhhuaopppcqeqx\":\"pfqbuaceopzf\"},\"id\":\"lzdahzxctobgbkdm\",\"name\":\"izpost\",\"type\":\"grcfb\"}";
 
         Mockito.when(httpResponse.getStatusCode()).thenReturn(200);
         Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders());
@@ -82,7 +82,7 @@ public void testCreateOrUpdate() throws Exception {
                         .withSqlServiceAccount("jcbpwxqpsrknft")
                         .withFileShareWitnessPath("vriuhprwmdyvx")
                         .withStorageAccountUrl("ayriwwroyqbexrm")
-                        .withStorageAccountPrimaryKey("ibycno")
+                        .withStorageAccountPrimaryKey("fakeStorageAccountPrimaryKeyPlaceholder")
                         .withClusterSubnetType(ClusterSubnetType.SINGLE_SUBNET))
                 .create();
 
@@ -97,7 +97,7 @@ public void testCreateOrUpdate() throws Exception {
         Assertions.assertEquals("dzyexznelixh", response.wsfcDomainProfile().sqlServiceAccount());
         Assertions.assertEquals("ztfolhbnxk", response.wsfcDomainProfile().fileShareWitnessPath());
         Assertions.assertEquals("laulppg", response.wsfcDomainProfile().storageAccountUrl());
-        Assertions.assertEquals("tpnapnyiropuhpig", response.wsfcDomainProfile().storageAccountPrimaryKey());
+        Assertions.assertEquals("fakeStorageAccountPrimaryKeyPlaceholder", response.wsfcDomainProfile().storageAccountPrimaryKey());
         Assertions.assertEquals(ClusterSubnetType.MULTI_SUBNET, response.wsfcDomainProfile().clusterSubnetType());
     }
 
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsListByResourceGroupTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsListByResourceGroupTests.java
index dc9f6cc92148..2f0641c18d36 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsListByResourceGroupTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsListByResourceGroupTests.java
@@ -35,7 +35,7 @@ public void testListByResourceGroup() throws Exception {
         ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class);
 
         String responseStr =
-            "{\"value\":[{\"properties\":{\"provisioningState\":\"rmclfplphoxu\",\"sqlImageOffer\":\"rpabg\",\"sqlImageSku\":\"Developer\",\"scaleType\":\"HA\",\"clusterManagerType\":\"WSFC\",\"clusterConfiguration\":\"Domainful\",\"wsfcDomainProfile\":{\"domainFqdn\":\"gxywpmue\",\"ouPath\":\"jzwf\",\"clusterBootstrapAccount\":\"q\",\"clusterOperatorAccount\":\"ids\",\"sqlServiceAccount\":\"onobglaocqx\",\"fileShareWitnessPath\":\"cmgyud\",\"storageAccountUrl\":\"tlmoyrx\",\"storageAccountPrimaryKey\":\"fudwpznt\",\"clusterSubnetType\":\"SingleSubnet\"}},\"location\":\"hl\",\"tags\":{\"kfrlhrxsbky\":\"bh\",\"afkuwb\":\"pycanuzbpz\",\"ehhseyvjusrts\":\"rnwb\"},\"id\":\"hspkdeemao\",\"name\":\"mx\",\"type\":\"gkvtmelmqkrhah\"}]}";
+            "{\"value\":[{\"properties\":{\"provisioningState\":\"rmclfplphoxu\",\"sqlImageOffer\":\"rpabg\",\"sqlImageSku\":\"Developer\",\"scaleType\":\"HA\",\"clusterManagerType\":\"WSFC\",\"clusterConfiguration\":\"Domainful\",\"wsfcDomainProfile\":{\"domainFqdn\":\"gxywpmue\",\"ouPath\":\"jzwf\",\"clusterBootstrapAccount\":\"q\",\"clusterOperatorAccount\":\"ids\",\"sqlServiceAccount\":\"onobglaocqx\",\"fileShareWitnessPath\":\"cmgyud\",\"storageAccountUrl\":\"tlmoyrx\",\"storageAccountPrimaryKey\":\"fakeStorageAccountPrimaryKeyPlaceholder\",\"clusterSubnetType\":\"SingleSubnet\"}},\"location\":\"hl\",\"tags\":{\"kfrlhrxsbky\":\"bh\",\"afkuwb\":\"pycanuzbpz\",\"ehhseyvjusrts\":\"rnwb\"},\"id\":\"hspkdeemao\",\"name\":\"mx\",\"type\":\"gkvtmelmqkrhah\"}]}";
 
         Mockito.when(httpResponse.getStatusCode()).thenReturn(200);
         Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders());
@@ -77,7 +77,7 @@ public void testListByResourceGroup() throws Exception {
         Assertions.assertEquals("onobglaocqx", response.iterator().next().wsfcDomainProfile().sqlServiceAccount());
         Assertions.assertEquals("cmgyud", response.iterator().next().wsfcDomainProfile().fileShareWitnessPath());
         Assertions.assertEquals("tlmoyrx", response.iterator().next().wsfcDomainProfile().storageAccountUrl());
-        Assertions.assertEquals("fudwpznt", response.iterator().next().wsfcDomainProfile().storageAccountPrimaryKey());
+        Assertions.assertEquals("fakeStorageAccountPrimaryKeyPlaceholder", response.iterator().next().wsfcDomainProfile().storageAccountPrimaryKey());
         Assertions
             .assertEquals(
                 ClusterSubnetType.SINGLE_SUBNET, response.iterator().next().wsfcDomainProfile().clusterSubnetType());
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsListTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsListTests.java
index 8f5db687413a..645e69dc0ca6 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsListTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineGroupsListTests.java
@@ -35,7 +35,7 @@ public void testList() throws Exception {
         ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class);
 
         String responseStr =
-            "{\"value\":[{\"properties\":{\"provisioningState\":\"uahaquhcdhmd\",\"sqlImageOffer\":\"laexqp\",\"sqlImageSku\":\"Developer\",\"scaleType\":\"HA\",\"clusterManagerType\":\"WSFC\",\"clusterConfiguration\":\"Domainful\",\"wsfcDomainProfile\":{\"domainFqdn\":\"vxpvgomz\",\"ouPath\":\"misgwbnb\",\"clusterBootstrapAccount\":\"ldawkzbaliourqha\",\"clusterOperatorAccount\":\"uhashsfwx\",\"sqlServiceAccount\":\"owzxcu\",\"fileShareWitnessPath\":\"cjooxdjebwpucwwf\",\"storageAccountUrl\":\"vbvmeu\",\"storageAccountPrimaryKey\":\"ivyhzceuojgjrwju\",\"clusterSubnetType\":\"SingleSubnet\"}},\"location\":\"wmcdytdxwi\",\"tags\":{\"qwgxhniskx\":\"rjaw\",\"klwndnhjdauwhv\":\"bkpyc\",\"zbtd\":\"l\"},\"id\":\"xujznbmpowu\",\"name\":\"przqlveu\",\"type\":\"lupj\"}]}";
+            "{\"value\":[{\"properties\":{\"provisioningState\":\"uahaquhcdhmd\",\"sqlImageOffer\":\"laexqp\",\"sqlImageSku\":\"Developer\",\"scaleType\":\"HA\",\"clusterManagerType\":\"WSFC\",\"clusterConfiguration\":\"Domainful\",\"wsfcDomainProfile\":{\"domainFqdn\":\"vxpvgomz\",\"ouPath\":\"misgwbnb\",\"clusterBootstrapAccount\":\"ldawkzbaliourqha\",\"clusterOperatorAccount\":\"uhashsfwx\",\"sqlServiceAccount\":\"owzxcu\",\"fileShareWitnessPath\":\"cjooxdjebwpucwwf\",\"storageAccountUrl\":\"vbvmeu\",\"storageAccountPrimaryKey\":\"fakeStorageAccountPrimaryKeyPlaceholder\",\"clusterSubnetType\":\"SingleSubnet\"}},\"location\":\"wmcdytdxwi\",\"tags\":{\"qwgxhniskx\":\"rjaw\",\"klwndnhjdauwhv\":\"bkpyc\",\"zbtd\":\"l\"},\"id\":\"xujznbmpowu\",\"name\":\"przqlveu\",\"type\":\"lupj\"}]}";
 
         Mockito.when(httpResponse.getStatusCode()).thenReturn(200);
         Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders());
@@ -80,7 +80,7 @@ public void testList() throws Exception {
         Assertions.assertEquals("vbvmeu", response.iterator().next().wsfcDomainProfile().storageAccountUrl());
         Assertions
             .assertEquals(
-                "ivyhzceuojgjrwju", response.iterator().next().wsfcDomainProfile().storageAccountPrimaryKey());
+                "fakeStorageAccountPrimaryKeyPlaceholder", response.iterator().next().wsfcDomainProfile().storageAccountPrimaryKey());
         Assertions
             .assertEquals(
                 ClusterSubnetType.SINGLE_SUBNET, response.iterator().next().wsfcDomainProfile().clusterSubnetType());
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java
index 590f86609967..e5a9ee641945 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachineInnerTests.java
@@ -37,7 +37,7 @@ public void testDeserialize() {
         SqlVirtualMachineInner model =
             BinaryData
                 .fromString(
-                    "{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"scxaq\",\"provisioningState\":\"ochcbonqvpkvl\",\"sqlImageOffer\":\"njeaseipheofloke\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"NoAgent\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Express\",\"sqlVirtualMachineGroupResourceId\":\"tgrhpdjpjumas\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"dudgwdslfhot\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1733107709,\"maintenanceWindowDuration\":991937495},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":1625524147,\"storageAccountUrl\":\"dehxnltyfsoppu\",\"storageContainerName\":\"esnzwde\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakeAutoBackupPasswordPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Sunday\",\"Saturday\",\"Friday\",\"Wednesday\"],\"fullBackupStartTime\":766815263,\"fullBackupWindowHours\":247911704,\"logBackupFrequency\":175400299},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"slazjdyg\",\"azureKeyVaultUrl\":\"tjixhbkuofqweyk\",\"servicePrincipalName\":\"enevfyexfwhybci\",\"servicePrincipalSecret\":\"yvdcsitynnaa\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":true},\"location\":\"jrefovgmkqsle\",\"tags\":{\"k\":\"xyqj\",\"jh\":\"attpngjcrcczsq\",\"ysou\":\"mdajv\",\"canoaeupf\":\"q\"},\"id\":\"yhltrpmopjmcm\",\"name\":\"tuo\",\"type\":\"thfuiuaodsfcpkvx\"}")
+                    "{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"scxaq\",\"provisioningState\":\"ochcbonqvpkvl\",\"sqlImageOffer\":\"njeaseipheofloke\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"NoAgent\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Express\",\"sqlVirtualMachineGroupResourceId\":\"tgrhpdjpjumas\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"dudgwdslfhot\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1733107709,\"maintenanceWindowDuration\":991937495},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":false,\"retentionPeriod\":1625524147,\"storageAccountUrl\":\"dehxnltyfsoppu\",\"storageContainerName\":\"esnzwde\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakeAutoBackupPasswordPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[\"Sunday\",\"Saturday\",\"Friday\",\"Wednesday\"],\"fullBackupStartTime\":766815263,\"fullBackupWindowHours\":247911704,\"logBackupFrequency\":175400299},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"slazjdyg\",\"azureKeyVaultUrl\":\"tjixhbkuofqweyk\",\"servicePrincipalName\":\"enevfyexfwhybci\",\"servicePrincipalSecret\":\"fakeSecretPlaceholder\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":true},\"location\":\"jrefovgmkqsle\",\"tags\":{\"k\":\"xyqj\",\"jh\":\"attpngjcrcczsq\",\"ysou\":\"mdajv\",\"canoaeupf\":\"q\"},\"id\":\"yhltrpmopjmcm\",\"name\":\"tuo\",\"type\":\"thfuiuaodsfcpkvx\"}")
                 .toObject(SqlVirtualMachineInner.class);
         Assertions.assertEquals("jrefovgmkqsle", model.location());
         Assertions.assertEquals("xyqj", model.tags().get("k"));
@@ -78,7 +78,7 @@ public void testDeserialize() {
         Assertions.assertEquals("slazjdyg", model.keyVaultCredentialSettings().credentialName());
         Assertions.assertEquals("tjixhbkuofqweyk", model.keyVaultCredentialSettings().azureKeyVaultUrl());
         Assertions.assertEquals("enevfyexfwhybci", model.keyVaultCredentialSettings().servicePrincipalName());
-        Assertions.assertEquals("yvdcsitynnaa", model.keyVaultCredentialSettings().servicePrincipalSecret());
+        Assertions.assertEquals("fakeSecretPlaceholder", model.keyVaultCredentialSettings().servicePrincipalSecret());
         Assertions.assertEquals(false, model.storageConfigurationSettings().sqlSystemDbOnDataDisk());
         Assertions
             .assertEquals(DiskConfigurationType.NEW, model.storageConfigurationSettings().diskConfigurationType());
@@ -142,7 +142,7 @@ public void testSerialize() {
                         .withCredentialName("slazjdyg")
                         .withAzureKeyVaultUrl("tjixhbkuofqweyk")
                         .withServicePrincipalName("enevfyexfwhybci")
-                        .withServicePrincipalSecret("yvdcsitynnaa"))
+                        .withServicePrincipalSecret("fakeSecretPlaceholder"))
                 .withServerConfigurationsManagementSettings(new ServerConfigurationsManagementSettings())
                 .withStorageConfigurationSettings(
                     new StorageConfigurationSettings()
@@ -191,7 +191,7 @@ public void testSerialize() {
         Assertions.assertEquals("slazjdyg", model.keyVaultCredentialSettings().credentialName());
         Assertions.assertEquals("tjixhbkuofqweyk", model.keyVaultCredentialSettings().azureKeyVaultUrl());
         Assertions.assertEquals("enevfyexfwhybci", model.keyVaultCredentialSettings().servicePrincipalName());
-        Assertions.assertEquals("yvdcsitynnaa", model.keyVaultCredentialSettings().servicePrincipalSecret());
+        Assertions.assertEquals("fakeSecretPlaceholder", model.keyVaultCredentialSettings().servicePrincipalSecret());
         Assertions.assertEquals(false, model.storageConfigurationSettings().sqlSystemDbOnDataDisk());
         Assertions
             .assertEquals(DiskConfigurationType.NEW, model.storageConfigurationSettings().diskConfigurationType());
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java
index c213707fa6a8..9532bebb7600 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesCreateOrUpdateTests.java
@@ -52,7 +52,7 @@ public void testCreateOrUpdate() throws Exception {
         ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class);
 
         String responseStr =
-            "{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"y\",\"provisioningState\":\"Succeeded\",\"sqlImageOffer\":\"dvstkw\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"mtdaa\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"i\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Tuesday\",\"maintenanceWindowStartingHour\":261614569,\"maintenanceWindowDuration\":1772217773},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":false,\"retentionPeriod\":1453079674,\"storageAccountUrl\":\"szkkfoqre\",\"storageContainerName\":\"kzikfjawneaivxwc\",\"storageAccessKey\":\"fakeAutoBackupStorageAccessKeyPlaceholder\",\"password\":\"fakeAutoBackupPasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1879278925,\"fullBackupWindowHours\":883019177,\"logBackupFrequency\":1246118617},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"hyoulpjr\",\"azureKeyVaultUrl\":\"ag\",\"servicePrincipalName\":\"vimjwos\",\"servicePrincipalSecret\":\"xitc\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"qgge\",\"tags\":{\"qidbqfatpxllrxcy\":\"nyga\",\"dmjsjqb\":\"moadsuvarmy\",\"yc\":\"hhyxxrw\"},\"id\":\"duhpk\",\"name\":\"kgymareqnajxqug\",\"type\":\"hky\"}";
+            "{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"y\",\"provisioningState\":\"Succeeded\",\"sqlImageOffer\":\"dvstkw\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Web\",\"sqlVirtualMachineGroupResourceId\":\"mtdaa\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"i\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Tuesday\",\"maintenanceWindowStartingHour\":261614569,\"maintenanceWindowDuration\":1772217773},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":false,\"retentionPeriod\":1453079674,\"storageAccountUrl\":\"szkkfoqre\",\"storageContainerName\":\"kzikfjawneaivxwc\",\"storageAccessKey\":\"fakeAutoBackupStorageAccessKeyPlaceholder\",\"password\":\"fakeAutoBackupPasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1879278925,\"fullBackupWindowHours\":883019177,\"logBackupFrequency\":1246118617},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"hyoulpjr\",\"azureKeyVaultUrl\":\"ag\",\"servicePrincipalName\":\"vimjwos\",\"servicePrincipalSecret\":\"fakeSecretPlaceholder\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"qgge\",\"tags\":{\"qidbqfatpxllrxcy\":\"nyga\",\"dmjsjqb\":\"moadsuvarmy\",\"yc\":\"hhyxxrw\"},\"id\":\"duhpk\",\"name\":\"kgymareqnajxqug\",\"type\":\"hky\"}";
 
         Mockito.when(httpResponse.getStatusCode()).thenReturn(200);
         Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders());
@@ -114,7 +114,7 @@ public void testCreateOrUpdate() throws Exception {
                         .withStorageAccountUrl("c")
                         .withStorageContainerName("kqqzqioxiysu")
                         .withStorageAccessKey("fakeStorageCredentialPlaceholder")
-                        .withPassword("fakeCredentialPlaceholder")
+                        .withPassword("fakePasswordPlaceholder")
                         .withBackupSystemDbs(false)
                         .withBackupScheduleType(BackupScheduleType.AUTOMATED)
                         .withFullBackupFrequency(FullBackupFrequencyType.DAILY)
@@ -178,7 +178,7 @@ public void testCreateOrUpdate() throws Exception {
         Assertions.assertEquals("hyoulpjr", response.keyVaultCredentialSettings().credentialName());
         Assertions.assertEquals("ag", response.keyVaultCredentialSettings().azureKeyVaultUrl());
         Assertions.assertEquals("vimjwos", response.keyVaultCredentialSettings().servicePrincipalName());
-        Assertions.assertEquals("xitc", response.keyVaultCredentialSettings().servicePrincipalSecret());
+        Assertions.assertEquals("fakeSecretPlaceholder", response.keyVaultCredentialSettings().servicePrincipalSecret());
         Assertions.assertEquals(false, response.storageConfigurationSettings().sqlSystemDbOnDataDisk());
         Assertions
             .assertEquals(
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListByResourceGroupTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListByResourceGroupTests.java
index 126cc696bfbc..0931ce2d638a 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListByResourceGroupTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListByResourceGroupTests.java
@@ -43,7 +43,7 @@ public void testListByResourceGroup() throws Exception {
         ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class);
 
         String responseStr =
-            "{\"value\":[{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"odsotbobzdop\",\"provisioningState\":\"wvnhdldwmgx\",\"sqlImageOffer\":\"rslpmutwuoeg\",\"sqlServerLicenseType\":\"AHUB\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Developer\",\"sqlVirtualMachineGroupResourceId\":\"sluicpdggkzz\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"taakc\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1814420357,\"maintenanceWindowDuration\":1349275484},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":true,\"retentionPeriod\":1989438546,\"storageAccountUrl\":\"smond\",\"storageContainerName\":\"quxvypomgkop\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1382848835,\"fullBackupWindowHours\":760338850,\"logBackupFrequency\":1009044014},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"tddckcb\",\"azureKeyVaultUrl\":\"ejrjxgciqibrho\",\"servicePrincipalName\":\"sdqrhzoymibmrq\",\"servicePrincipalSecret\":\"bahwfl\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"giwbwoenwa\",\"tags\":{\"xwbpokulpiuj\":\"tdtkcn\",\"obyu\":\"aasipqi\",\"dbutauvfbtkuwhh\":\"erpqlpqwcciuqg\"},\"id\":\"hykojoxafnndlpic\",\"name\":\"koymkcd\",\"type\":\"h\"}]}";
+            "{\"value\":[{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"odsotbobzdop\",\"provisioningState\":\"wvnhdldwmgx\",\"sqlImageOffer\":\"rslpmutwuoeg\",\"sqlServerLicenseType\":\"AHUB\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Developer\",\"sqlVirtualMachineGroupResourceId\":\"sluicpdggkzz\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"taakc\",\"autoPatchingSettings\":{\"enable\":false,\"dayOfWeek\":\"Wednesday\",\"maintenanceWindowStartingHour\":1814420357,\"maintenanceWindowDuration\":1349275484},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":true,\"retentionPeriod\":1989438546,\"storageAccountUrl\":\"smond\",\"storageContainerName\":\"quxvypomgkop\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":false,\"backupScheduleType\":\"Manual\",\"fullBackupFrequency\":\"Weekly\",\"daysOfWeek\":[],\"fullBackupStartTime\":1382848835,\"fullBackupWindowHours\":760338850,\"logBackupFrequency\":1009044014},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"tddckcb\",\"azureKeyVaultUrl\":\"ejrjxgciqibrho\",\"servicePrincipalName\":\"sdqrhzoymibmrq\",\"servicePrincipalSecret\":\"fakeSecretPlaceholder\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"NEW\",\"storageWorkloadType\":\"OLTP\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"giwbwoenwa\",\"tags\":{\"xwbpokulpiuj\":\"tdtkcn\",\"obyu\":\"aasipqi\",\"dbutauvfbtkuwhh\":\"erpqlpqwcciuqg\"},\"id\":\"hykojoxafnndlpic\",\"name\":\"koymkcd\",\"type\":\"h\"}]}";
 
         Mockito.when(httpResponse.getStatusCode()).thenReturn(200);
         Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders());
@@ -126,7 +126,7 @@ public void testListByResourceGroup() throws Exception {
             .assertEquals(
                 "sdqrhzoymibmrq", response.iterator().next().keyVaultCredentialSettings().servicePrincipalName());
         Assertions
-            .assertEquals("bahwfl", response.iterator().next().keyVaultCredentialSettings().servicePrincipalSecret());
+            .assertEquals("fakeSecretPlaceholder", response.iterator().next().keyVaultCredentialSettings().servicePrincipalSecret());
         Assertions
             .assertEquals(false, response.iterator().next().storageConfigurationSettings().sqlSystemDbOnDataDisk());
         Assertions
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListBySqlVmGroupTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListBySqlVmGroupTests.java
index 176c4ce312b8..a3a2457bb598 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListBySqlVmGroupTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListBySqlVmGroupTests.java
@@ -43,7 +43,7 @@ public void testListBySqlVmGroup() throws Exception {
         ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class);
 
         String responseStr =
-            "{\"value\":[{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"vkr\",\"provisioningState\":\"wbxqzvszjfau\",\"sqlImageOffer\":\"fdxxivetvtcqaqtd\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Developer\",\"sqlVirtualMachineGroupResourceId\":\"yslqbhsfx\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"vasrruvwb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Thursday\",\"maintenanceWindowStartingHour\":213257698,\"maintenanceWindowDuration\":540005244},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":true,\"retentionPeriod\":1282258802,\"storageAccountUrl\":\"srfbjfdtwss\",\"storageContainerName\":\"ftpvjzbexil\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[],\"fullBackupStartTime\":151199466,\"fullBackupWindowHours\":395045632,\"logBackupFrequency\":1463995661},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"ervnaenqpehi\",\"azureKeyVaultUrl\":\"oygmift\",\"servicePrincipalName\":\"zdnds\",\"servicePrincipalSecret\":\"nayqi\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"iertgccymvaolp\",\"tags\":{\"lzpswiydm\":\"qlfmmdnbb\",\"sadbz\":\"wyhzdx\"},\"id\":\"nvdfznuda\",\"name\":\"dvxzbncblylpst\",\"type\":\"bhhxsrzdzuc\"}]}";
+            "{\"value\":[{\"identity\":{\"type\":\"SystemAssigned\"},\"properties\":{\"virtualMachineResourceId\":\"vkr\",\"provisioningState\":\"wbxqzvszjfau\",\"sqlImageOffer\":\"fdxxivetvtcqaqtd\",\"sqlServerLicenseType\":\"DR\",\"sqlManagement\":\"LightWeight\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Developer\",\"sqlVirtualMachineGroupResourceId\":\"yslqbhsfx\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"vasrruvwb\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Thursday\",\"maintenanceWindowStartingHour\":213257698,\"maintenanceWindowDuration\":540005244},\"autoBackupSettings\":{\"enable\":false,\"enableEncryption\":true,\"retentionPeriod\":1282258802,\"storageAccountUrl\":\"srfbjfdtwss\",\"storageContainerName\":\"ftpvjzbexil\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[],\"fullBackupStartTime\":151199466,\"fullBackupWindowHours\":395045632,\"logBackupFrequency\":1463995661},\"keyVaultCredentialSettings\":{\"enable\":false,\"credentialName\":\"ervnaenqpehi\",\"azureKeyVaultUrl\":\"oygmift\",\"servicePrincipalName\":\"zdnds\",\"servicePrincipalSecret\":\"fakeSecretPlaceholder\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"EXTEND\",\"storageWorkloadType\":\"DW\"},\"assessmentSettings\":{\"enable\":false,\"runImmediately\":false},\"enableAutomaticUpgrade\":true},\"location\":\"iertgccymvaolp\",\"tags\":{\"lzpswiydm\":\"qlfmmdnbb\",\"sadbz\":\"wyhzdx\"},\"id\":\"nvdfznuda\",\"name\":\"dvxzbncblylpst\",\"type\":\"bhhxsrzdzuc\"}]}";
 
         Mockito.when(httpResponse.getStatusCode()).thenReturn(200);
         Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders());
@@ -123,7 +123,7 @@ public void testListBySqlVmGroup() throws Exception {
         Assertions
             .assertEquals("zdnds", response.iterator().next().keyVaultCredentialSettings().servicePrincipalName());
         Assertions
-            .assertEquals("nayqi", response.iterator().next().keyVaultCredentialSettings().servicePrincipalSecret());
+            .assertEquals("fakeSecretPlaceholder", response.iterator().next().keyVaultCredentialSettings().servicePrincipalSecret());
         Assertions
             .assertEquals(false, response.iterator().next().storageConfigurationSettings().sqlSystemDbOnDataDisk());
         Assertions
diff --git a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListTests.java b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListTests.java
index 0d156e5a6fcb..ab45750d2c3f 100644
--- a/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListTests.java
+++ b/sdk/sqlvirtualmachine/azure-resourcemanager-sqlvirtualmachine/src/test/java/com/azure/resourcemanager/sqlvirtualmachine/generated/SqlVirtualMachinesListTests.java
@@ -43,7 +43,7 @@ public void testList() throws Exception {
         ArgumentCaptor httpRequest = ArgumentCaptor.forClass(HttpRequest.class);
 
         String responseStr =
-            "{\"value\":[{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"evfiwjmygt\",\"provisioningState\":\"slswtm\",\"sqlImageOffer\":\"riofzpyqse\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"Full\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Enterprise\",\"sqlVirtualMachineGroupResourceId\":\"szhedplvw\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"konzmnsik\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Friday\",\"maintenanceWindowStartingHour\":1625673068,\"maintenanceWindowDuration\":1175665004},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":true,\"retentionPeriod\":992785532,\"storageAccountUrl\":\"v\",\"storageContainerName\":\"ur\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[],\"fullBackupStartTime\":442330150,\"fullBackupWindowHours\":90744470,\"logBackupFrequency\":299284831},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"iplbpodxunkbebxm\",\"azureKeyVaultUrl\":\"yyntwl\",\"servicePrincipalName\":\"qtkoievs\",\"servicePrincipalSecret\":\"tgqr\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":false},\"location\":\"vpbttd\",\"tags\":{\"xe\":\"rp\",\"bhjpglkfgohdne\":\"mnzb\",\"phsdyhto\":\"el\",\"v\":\"fikdowwqu\"},\"id\":\"zx\",\"name\":\"lvithhqzonosgg\",\"type\":\"hcohfwdsjnk\"}]}";
+            "{\"value\":[{\"identity\":{\"type\":\"None\"},\"properties\":{\"virtualMachineResourceId\":\"evfiwjmygt\",\"provisioningState\":\"slswtm\",\"sqlImageOffer\":\"riofzpyqse\",\"sqlServerLicenseType\":\"PAYG\",\"sqlManagement\":\"Full\",\"leastPrivilegeMode\":\"Enabled\",\"sqlImageSku\":\"Enterprise\",\"sqlVirtualMachineGroupResourceId\":\"szhedplvw\",\"wsfcDomainCredentials\":{\"clusterBootstrapAccountPassword\":\"fakeClusterBootstrapAccountPasswordPlaceholder\",\"clusterOperatorAccountPassword\":\"fakeClusterOperatorAccountPasswordPlaceholder\",\"sqlServiceAccountPassword\":\"fakeSqlServiceAccountPasswordPlaceholder\"},\"wsfcStaticIp\":\"konzmnsik\",\"autoPatchingSettings\":{\"enable\":true,\"dayOfWeek\":\"Friday\",\"maintenanceWindowStartingHour\":1625673068,\"maintenanceWindowDuration\":1175665004},\"autoBackupSettings\":{\"enable\":true,\"enableEncryption\":true,\"retentionPeriod\":992785532,\"storageAccountUrl\":\"v\",\"storageContainerName\":\"ur\",\"storageAccessKey\":\"fakeStorageAccessKeyPlaceholder\",\"password\":\"fakePasswordPlaceholder\",\"backupSystemDbs\":true,\"backupScheduleType\":\"Automated\",\"fullBackupFrequency\":\"Daily\",\"daysOfWeek\":[],\"fullBackupStartTime\":442330150,\"fullBackupWindowHours\":90744470,\"logBackupFrequency\":299284831},\"keyVaultCredentialSettings\":{\"enable\":true,\"credentialName\":\"iplbpodxunkbebxm\",\"azureKeyVaultUrl\":\"yyntwl\",\"servicePrincipalName\":\"qtkoievs\",\"servicePrincipalSecret\":\"fakeSecretPlaceholder\"},\"serverConfigurationsManagementSettings\":{},\"storageConfigurationSettings\":{\"sqlSystemDbOnDataDisk\":false,\"diskConfigurationType\":\"ADD\",\"storageWorkloadType\":\"GENERAL\"},\"assessmentSettings\":{\"enable\":true,\"runImmediately\":true},\"enableAutomaticUpgrade\":false},\"location\":\"vpbttd\",\"tags\":{\"xe\":\"rp\",\"bhjpglkfgohdne\":\"mnzb\",\"phsdyhto\":\"el\",\"v\":\"fikdowwqu\"},\"id\":\"zx\",\"name\":\"lvithhqzonosgg\",\"type\":\"hcohfwdsjnk\"}]}";
 
         Mockito.when(httpResponse.getStatusCode()).thenReturn(200);
         Mockito.when(httpResponse.getHeaders()).thenReturn(new HttpHeaders());
@@ -122,7 +122,7 @@ public void testList() throws Exception {
         Assertions
             .assertEquals("qtkoievs", response.iterator().next().keyVaultCredentialSettings().servicePrincipalName());
         Assertions
-            .assertEquals("tgqr", response.iterator().next().keyVaultCredentialSettings().servicePrincipalSecret());
+            .assertEquals("fakeSecretPlaceholder", response.iterator().next().keyVaultCredentialSettings().servicePrincipalSecret());
         Assertions
             .assertEquals(false, response.iterator().next().storageConfigurationSettings().sqlSystemDbOnDataDisk());
         Assertions

From 3606eb8385dcf1e99f90b42fcbbcf4565ee7a00e Mon Sep 17 00:00:00 2001
From: shafang 
Date: Fri, 28 Oct 2022 16:05:54 -0700
Subject: [PATCH 18/21] remove new suppression keywords and fixed known issues

---
 eng/CredScanSuppression.json                  |  7 +----
 ...ManyUsingContainerServiceOrchestrator.json |  6 ++---
 ...stManageContainerRegistryWithWebhooks.json |  6 ++---
 .../azure-resourcemanager-security/SAMPLE.md  | 27 +------------------
 .../ConnectorsCreateOrUpdateSamples.java      | 27 +------------------
 ...bstractAzureServiceConfigurationTests.java |  6 +++--
 .../autoconfigure/FakeCredentialInTest.java   | 19 +++++++++++++
 7 files changed, 32 insertions(+), 66 deletions(-)
 create mode 100644 sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java

diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json
index e1a9a6728de0..639530514a0d 100644
--- a/eng/CredScanSuppression.json
+++ b/eng/CredScanSuppression.json
@@ -7,12 +7,6 @@
             ],
             "_justification": "Secret used by test code, it is fake."
         },
-        {
-            "placeholder": [
-              "-----BEGIN PRIVATE KEY-----"
-            ],
-            "_justification": "Well known names."
-        },
         {
             "placeholder": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
             "_justification": "SHA-256 encrypted random data generated at test time."
@@ -58,6 +52,7 @@
             "file": [
                 "sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java",
                 "sdk/keyvault/azure-security-keyvault-certificates/src/test/java/com/azure/security/keyvault/certificates/FakeCredentialInTest.java",
+                "sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java",
                 "sdk/spring/spring-cloud-azure-service/src/test/java/com/azure/spring/cloud/service/implementation/storage/FakeCredentialInTest.java",
                 "sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/FakeCredentialInTest.java",
                 "sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/FakeCredentialInTest.java",
diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.json
index c40579eb74a1..1284cdc0a902 100644
--- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.json
+++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.json
@@ -75,7 +75,7 @@
       "content-type" : "application/json; charset=utf-8",
       "cache-control" : "no-cache",
       "x-ms-request-id" : "154f2b49-1d98-4272-910e-6f04d19bd136",
-      "Body" : "{\"username\":\"acrd57221498718\",\"passwords\":[{\"name\":\"password\",\"value\":\"LuypqE8j874V/IiOi5w5qm8p4ydwoBKw\"},{\"name\":\"password2\",\"value\":\"l5ZZay6FHkc5XPiZlB44JPch0YBFsdc+\"}]}"
+      "Body" : "{\"username\":\"acrd57221498718\",\"passwords\":[{\"name\":\"password\",\"value\":\"fakePasswordPlaceholder\"},{\"name\":\"password2\",\"value\":\"fakePasswordPlaceholder\"}]}"
     }
   }, {
     "Method" : "POST",
@@ -102,7 +102,7 @@
       "content-type" : "application/json; charset=utf-8",
       "cache-control" : "no-cache",
       "x-ms-request-id" : "39d5cda8-b800-4e76-8154-f7df3436192b",
-      "Body" : "{\"username\":\"acrd57221498718\",\"passwords\":[{\"name\":\"password\",\"value\":\"LuypqE8j874V/IiOi5w5qm8p4ydwoBKw\"},{\"name\":\"password2\",\"value\":\"l5ZZay6FHkc5XPiZlB44JPch0YBFsdc+\"}]}"
+      "Body" : "{\"username\":\"acrd57221498718\",\"passwords\":[{\"name\":\"password\",\"value\":\"fakePasswordPlaceholder\"},{\"name\":\"password2\",\"value\":\"fakePasswordPlaceholder\"}]}"
     }
   }, {
     "Method" : "PUT",
@@ -722,4 +722,4 @@
     }
   } ],
   "variables" : [ "rgaci9a7509643", "acrd57221498718", "acisample81b47578f", "acssample63c4826651ffc4", "b820f89e-2e09-4877-bffd-ca2aceb48570", "2d0241e2-739e-4988-a508-3989b7d2df47", "dockervm71194c", "pip670383", "47df7b06-5d87-42dc-9338-ff20ab9253a6", "nic10605690f5e", "a34dd435-0a6d-4f0a-8134-c165ac5dc863", "vnet396828d03f", "c86be45a-c6c8-47a9-bf53-c4fda3fb2e0b", "pip39640a74", "06a4e062-eb60-42c9-994d-6069fc702e4b", "95759480-4ee4-470b-9aec-f1a8f11bd2d8", "d55e2476-8643-4942-890a-5dbbda489d6c", "3a27035a-1696-4479-99ac-7ee22a2dacca", "809dee22-61a4-4689-9464-75f11fbf3fe8", "701b1f35-1c97-4afe-b17b-ceb79435c193", "00d2dbaa-de2c-4ac4-a02c-b4ba0a9d25b0" ]
-}
\ No newline at end of file
+}
diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistryWithWebhooks.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistryWithWebhooks.json
index edfc63273eee..eeabf3b7123e 100644
--- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistryWithWebhooks.json
+++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistryWithWebhooks.json
@@ -183,7 +183,7 @@
       "content-type" : "application/json; charset=utf-8",
       "cache-control" : "no-cache",
       "x-ms-request-id" : "2bd4c2f4-5041-4c25-9c29-e306d9a56758",
-      "Body" : "{\"username\":\"acrsample749517752\",\"passwords\":[{\"name\":\"password\",\"value\":\"JcB6yARXFlu8lae6O/YMvnsFKyJeY31Q\"},{\"name\":\"password2\",\"value\":\"XcBbA5GdxjCR3hJG=NNG1mrskwe6BHv1\"}]}"
+      "Body" : "{\"username\":\"acrsample749517752\",\"passwords\":[{\"name\":\"password\",\"value\":\"fakePasswordPlaceholder\"},{\"name\":\"password2\",\"value\":\"fakePasswordPlaceholder\"}]}"
     }
   }, {
     "Method" : "GET",
@@ -318,7 +318,7 @@
       "content-type" : "application/json; charset=utf-8",
       "cache-control" : "no-cache",
       "x-ms-request-id" : "db240836-f1bb-40f4-86a0-fc5ba8770634",
-      "Body" : "{\"username\":\"acrsample749517752\",\"passwords\":[{\"name\":\"password\",\"value\":\"JcB6yARXFlu8lae6O/YMvnsFKyJeY31Q\"},{\"name\":\"password2\",\"value\":\"XcBbA5GdxjCR3hJG=NNG1mrskwe6BHv1\"}]}"
+      "Body" : "{\"username\":\"acrsample749517752\",\"passwords\":[{\"name\":\"password\",\"value\":\"fakePasswordPlaceholder\"},{\"name\":\"password2\",\"value\":\"fakePasswordPlaceholder\"}]}"
     }
   }, {
     "Method" : "PUT",
@@ -869,4 +869,4 @@
     }
   } ],
   "variables" : [ "rgacr5e748538e", "acrsample749517752", "579b1de8-becc-4611-be12-e133f8842b97", "79a5ab15-0f7c-4c0a-ac20-7e658f9c31ca", "600ccdb5-55a4-45bd-bf32-d5caf1cd87cf", "b1c4c652-7a51-45c0-962a-add6f40db3b0", "e8bead9c-a5cf-48bf-8a19-e5e73c214a5c", "dockervm57918b", "pip049999", "e911e6f8-8b67-43b3-a8c6-a4c44343ac9e", "nic48835156295", "869a7ad4-977c-4cc7-9dab-1dbecbb6e7e0", "vnet458431fe00", "c9fc7195-0cd3-44f4-b417-39a2ba5478c3", "pip29980031", "d5d48dad-9687-4804-9232-d8e224082f67", "a8d57efa-4768-4272-9aca-a9ca5e120e5c", "0c799d10-4c89-4952-9103-bc8837b30968", "b99ea507-e262-4807-8f2b-f8793efa964a" ]
-}
\ No newline at end of file
+}
diff --git a/sdk/security/azure-resourcemanager-security/SAMPLE.md b/sdk/security/azure-resourcemanager-security/SAMPLE.md
index 090878aeb8e6..77eb0eef3a20 100644
--- a/sdk/security/azure-resourcemanager-security/SAMPLE.md
+++ b/sdk/security/azure-resourcemanager-security/SAMPLE.md
@@ -2270,32 +2270,7 @@ public final class ConnectorsCreateOrUpdateSamples {
                     .withPrivateKeyId("6efg587hra2568as34d22326b044cc20dc2af")
                     .withPrivateKey(
                         "-----BEGIN PRIVATE KEY-----\n"
-                            + "MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCpxYHcLzcDZ6/Q\n"
-                            + "AeQZnQXM5GTb3p09Xsbjo2T2F61b6I7FZiQXBrbw3Zf0CUCkkqTTpD5xifl82yQ6\n"
-                            + "89V7SAe8hxI7esAcVDhm/aJMqzVjHLISAU2L3li1sn0jjY2oYtndwN6bRivP8O6t\n"
-                            + "9F+W6E0zMlbCxtpZEHLbb6WxlJJrwEQ0MPH2yOCwZUQi6NHksAtEzX2nNKJNyUC7\n"
-                            + "QyBVHHMm34H2bmZwsuQp3y2otpcJ9tJnVmYfC3k/w4x2L+DIK7JnQP/C1wQqu2du\n"
-                            + "c0w6sydF6RhLoHButrVdYRJTdfK4k03SsSTyMqZ+f7LNnKw3xenzw1VmEpk8mvoQ\n"
-                            + "t08tCBOrAgMBAAECggEAByzz6iyMtLYjNjV+QJ7kad6VbL2iA8AHxANZ9xTVHPdd\n"
-                            + "YXaJu/dqsA+NpqDlfI8+LDva782XH/HbPCqmMUnAGfXTjXQIvqnIoIHD5F2wKfpC\n"
-                            + "hIRNlMXXFgbvRxtqi11yO+80+XcjzuwuCmgzyhsTeEB+bkkdXXpWgHPdmv3emnM6\n"
-                            + "MQM9Zgrug0UndPmiUwKOcJSU4PlmlTpHEV4vA6JfA4bvphy9m1jxO5qWeah5yym2\n"
-                            + "6FP5BRIDF98kFrDnSXJjajwgLCQ+MypFQXyax6XkxDxuKXbng1bv7eZDjqazIChk\n"
-                            + "m0y14X0s0jnWc+AX8vfeSf7d+EsGdVinEwR1aAawEQKBgQDqDB0qxcIQ1oI1Kww8\n"
-                            + "9vXefTiuWsf47F+fJ/DIOEbiRfE8IdCgmOABvcqJIoxW/DFMBEdLCcx73Km7pOmd\n"
-                            + "Kg1ddScnaO8cOj2v/Ub+fAqVrA4ki4ViYP0A7/Nogga3Jr/x3ey5bitrIfFImteS\n"
-                            + "CgBHBzZvoQpvO4lB2tKVgo2P9wKBgQC5sgTEq4sasRGSAY6lIoJno0I8w28a/16D\n"
-                            + "es60XQeY1ger8uTGwlT02v/u/arDUmRLPClpujXq6gK29KvtRCHy7JkpGbqW2bZs\n"
-                            + "PFKKWR7Tk3XPKYyjv94AIi5/xoFeDhS4lpAvy3Z5tQhYS6wqWKvT6yZQ3kM+Hfxs\n"
-                            + "pHgvu3mU7QKBgQC9/E1k3hj1cBtMK4CIsHPPQljTd4+iacYJPPPAo6YuoVX8WPqw\n"
-                            + "ksgrwbN59Fh1d8xQh5yTtgWOegYx8uFMGcm1lpbM7+pBQKm4hWGuzGQPMRZd5f/F\n"
-                            + "ZzOZIi61I+9tlv/yxxIVR+/ozCm/pSneO04UWi9/F/uPZYW6tnWAtfRR6wKBgGsZ\n"
-                            + "8MQaCK4JaI/klAhMghgSQnbXZXKVzUZaA3Rln6cX8u7KtgapOOTMlwaZie8Dy1LV\n"
-                            + "TTFstAJcm9o3/h1nyYjZy3C4JTUyNpPwqs6enjf7edxVI4eidwFutZD+xcigqHTa\n"
-                            + "aikW2atSrZB3fMIjyF7+5meH+hKOqvNiXOty3qn1AoGAZuVxYQy5FVq3YZxzr3Aa\n"
-                            + "Am0ShoXTF6QYIbsaUiUGoa/NlHcw9V/lj4AqBRbxbaYMD+hz2J/od9cb268eJKY8\n"
-                            + "3b6MvaUqdNhNnWodJXLhgtmGEHDKmTppz2JSTx/tVzCfhFdcOC79StZvcKLhtoFQ\n"
-                            + "+/3lEw6NCIXzm5E4+dtJG4k=\n"
+                            + "FAKE_PRIVATE_KEY_PLACEHOLDER"
                             + "-----END PRIVATE KEY-----\n")
                     .withClientEmail("asc-135@asc-project-1234.iam.gserviceaccount.com")
                     .withClientId("105889053725632919854")
diff --git a/sdk/security/azure-resourcemanager-security/src/samples/java/com/azure/resourcemanager/security/generated/ConnectorsCreateOrUpdateSamples.java b/sdk/security/azure-resourcemanager-security/src/samples/java/com/azure/resourcemanager/security/generated/ConnectorsCreateOrUpdateSamples.java
index 88665074156c..900a2e3f5020 100644
--- a/sdk/security/azure-resourcemanager-security/src/samples/java/com/azure/resourcemanager/security/generated/ConnectorsCreateOrUpdateSamples.java
+++ b/sdk/security/azure-resourcemanager-security/src/samples/java/com/azure/resourcemanager/security/generated/ConnectorsCreateOrUpdateSamples.java
@@ -36,32 +36,7 @@ public static void gcpCredentialsCreateACloudAccountConnectorForASubscription(
                     .withPrivateKeyId("6efg587hra2568as34d22326b044cc20dc2af")
                     .withPrivateKey(
                         "-----BEGIN PRIVATE KEY-----\n"
-                            + "MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCpxYHcLzcDZ6/Q\n"
-                            + "AeQZnQXM5GTb3p09Xsbjo2T2F61b6I7FZiQXBrbw3Zf0CUCkkqTTpD5xifl82yQ6\n"
-                            + "89V7SAe8hxI7esAcVDhm/aJMqzVjHLISAU2L3li1sn0jjY2oYtndwN6bRivP8O6t\n"
-                            + "9F+W6E0zMlbCxtpZEHLbb6WxlJJrwEQ0MPH2yOCwZUQi6NHksAtEzX2nNKJNyUC7\n"
-                            + "QyBVHHMm34H2bmZwsuQp3y2otpcJ9tJnVmYfC3k/w4x2L+DIK7JnQP/C1wQqu2du\n"
-                            + "c0w6sydF6RhLoHButrVdYRJTdfK4k03SsSTyMqZ+f7LNnKw3xenzw1VmEpk8mvoQ\n"
-                            + "t08tCBOrAgMBAAECggEAByzz6iyMtLYjNjV+QJ7kad6VbL2iA8AHxANZ9xTVHPdd\n"
-                            + "YXaJu/dqsA+NpqDlfI8+LDva782XH/HbPCqmMUnAGfXTjXQIvqnIoIHD5F2wKfpC\n"
-                            + "hIRNlMXXFgbvRxtqi11yO+80+XcjzuwuCmgzyhsTeEB+bkkdXXpWgHPdmv3emnM6\n"
-                            + "MQM9Zgrug0UndPmiUwKOcJSU4PlmlTpHEV4vA6JfA4bvphy9m1jxO5qWeah5yym2\n"
-                            + "6FP5BRIDF98kFrDnSXJjajwgLCQ+MypFQXyax6XkxDxuKXbng1bv7eZDjqazIChk\n"
-                            + "m0y14X0s0jnWc+AX8vfeSf7d+EsGdVinEwR1aAawEQKBgQDqDB0qxcIQ1oI1Kww8\n"
-                            + "9vXefTiuWsf47F+fJ/DIOEbiRfE8IdCgmOABvcqJIoxW/DFMBEdLCcx73Km7pOmd\n"
-                            + "Kg1ddScnaO8cOj2v/Ub+fAqVrA4ki4ViYP0A7/Nogga3Jr/x3ey5bitrIfFImteS\n"
-                            + "CgBHBzZvoQpvO4lB2tKVgo2P9wKBgQC5sgTEq4sasRGSAY6lIoJno0I8w28a/16D\n"
-                            + "es60XQeY1ger8uTGwlT02v/u/arDUmRLPClpujXq6gK29KvtRCHy7JkpGbqW2bZs\n"
-                            + "PFKKWR7Tk3XPKYyjv94AIi5/xoFeDhS4lpAvy3Z5tQhYS6wqWKvT6yZQ3kM+Hfxs\n"
-                            + "pHgvu3mU7QKBgQC9/E1k3hj1cBtMK4CIsHPPQljTd4+iacYJPPPAo6YuoVX8WPqw\n"
-                            + "ksgrwbN59Fh1d8xQh5yTtgWOegYx8uFMGcm1lpbM7+pBQKm4hWGuzGQPMRZd5f/F\n"
-                            + "ZzOZIi61I+9tlv/yxxIVR+/ozCm/pSneO04UWi9/F/uPZYW6tnWAtfRR6wKBgGsZ\n"
-                            + "8MQaCK4JaI/klAhMghgSQnbXZXKVzUZaA3Rln6cX8u7KtgapOOTMlwaZie8Dy1LV\n"
-                            + "TTFstAJcm9o3/h1nyYjZy3C4JTUyNpPwqs6enjf7edxVI4eidwFutZD+xcigqHTa\n"
-                            + "aikW2atSrZB3fMIjyF7+5meH+hKOqvNiXOty3qn1AoGAZuVxYQy5FVq3YZxzr3Aa\n"
-                            + "Am0ShoXTF6QYIbsaUiUGoa/NlHcw9V/lj4AqBRbxbaYMD+hz2J/od9cb268eJKY8\n"
-                            + "3b6MvaUqdNhNnWodJXLhgtmGEHDKmTppz2JSTx/tVzCfhFdcOC79StZvcKLhtoFQ\n"
-                            + "+/3lEw6NCIXzm5E4+dtJG4k=\n"
+                            + "FAKE_PRIVATE_KEY_PLACEHOLDER"
                             + "-----END PRIVATE KEY-----\n")
                     .withClientEmail("asc-135@asc-project-1234.iam.gserviceaccount.com")
                     .withClientId("105889053725632919854")
diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
index 1075a8309f63..6073255b1461 100644
--- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
+++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
@@ -20,6 +20,8 @@
 import org.springframework.boot.test.context.assertj.AssertableApplicationContext;
 import org.springframework.boot.test.context.runner.ApplicationContextRunner;
 
+import static com.azure.spring.cloud.autoconfigure.FakeCredentialInTest.PASSWORD_PLACEHOLDER;
+import static com.azure.spring.cloud.autoconfigure.FakeCredentialInTest.USERNAME_PLACEHOLDER;
 import static com.azure.spring.cloud.core.implementation.util.ReflectionUtils.getField;
 import static org.assertj.core.api.Assertions.assertThat;
 
@@ -76,8 +78,8 @@ protected void usGovCloudShouldWorkWithUsernamePasswordCredential() {
             .withPropertyValues(
                 getPropertyPrefix() + ".profile.cloud-type=AZURE_US_GOVERNMENT",
                 getPropertyPrefix() + ".credential.client-id=fake-client-id",
-                getPropertyPrefix() + ".credential.username=fakeNamePlaceholder",
-                getPropertyPrefix() + ".credential.password=fakePasswordPlaceholder"
+                getPropertyPrefix() + ".credential." + USERNAME_PLACEHOLDER + "=fakeNamePlaceholder",
+                getPropertyPrefix() + ".credential." + PASSWORD_PLACEHOLDER + "=fakePasswordPlaceholder"
             )
             .withConfiguration(AutoConfigurations.of(
                 AzureTokenCredentialAutoConfiguration.class,
diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java
new file mode 100644
index 000000000000..1a9aa7288c85
--- /dev/null
+++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java
@@ -0,0 +1,19 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.azure.spring.cloud.autoconfigure;
+
+/**
+ * Fake credential shared in Tests
+ */
+public class FakeCredentialInTest {
+    /**
+     * Username placeholder
+     */
+    public static final String USERNAME_PLACEHOLDER = "username";
+
+    /**
+     * Password placeholder
+     */
+    public static final String PASSWORD_PLACEHOLDER = "password";
+}

From da2358a5cd9169a73b9c5988674f2ed7c3faedba Mon Sep 17 00:00:00 2001
From: shafang 
Date: Fri, 28 Oct 2022 17:22:41 -0700
Subject: [PATCH 19/21] add more keyword to FakeCredentialInTest

---
 .../AbstractAzureServiceConfigurationTests.java        | 10 ++++++----
 .../cloud/autoconfigure/FakeCredentialInTest.java      | 10 ++++++++++
 2 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
index 6073255b1461..65c0d591c758 100644
--- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
+++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/AbstractAzureServiceConfigurationTests.java
@@ -20,7 +20,9 @@
 import org.springframework.boot.test.context.assertj.AssertableApplicationContext;
 import org.springframework.boot.test.context.runner.ApplicationContextRunner;
 
+import static com.azure.spring.cloud.autoconfigure.FakeCredentialInTest.CLIENT_ID_PLACEHOLDER;
 import static com.azure.spring.cloud.autoconfigure.FakeCredentialInTest.PASSWORD_PLACEHOLDER;
+import static com.azure.spring.cloud.autoconfigure.FakeCredentialInTest.SECRET;
 import static com.azure.spring.cloud.autoconfigure.FakeCredentialInTest.USERNAME_PLACEHOLDER;
 import static com.azure.spring.cloud.core.implementation.util.ReflectionUtils.getField;
 import static org.assertj.core.api.Assertions.assertThat;
@@ -42,8 +44,8 @@ protected void usGovCloudShouldWorkWithClientSecretCredential() {
             .withPropertyValues(
                 getPropertyPrefix() + ".profile.cloud-type=AZURE_US_GOVERNMENT",
                 getPropertyPrefix() + ".profile.tenant-id=fake-tenant-id",
-                getPropertyPrefix() + ".credential.client-id=fake-client-id",
-                getPropertyPrefix() + ".credential.client-secret=fake-client-secret"
+                getPropertyPrefix() + ".credential." + CLIENT_ID_PLACEHOLDER + "=fakeClientIdPlaceholder",
+                getPropertyPrefix() + ".credential.client-" + SECRET + "=fake-client-secret"
             )
             .withConfiguration(AutoConfigurations.of(
                 AzureTokenCredentialAutoConfiguration.class,
@@ -60,7 +62,7 @@ protected void usGovCloudShouldWorkWithClientCertificateCredential() {
             .withPropertyValues(
                 getPropertyPrefix() + ".profile.cloud-type=AZURE_US_GOVERNMENT",
                 getPropertyPrefix() + ".profile.tenant-id=fake-tenant-id",
-                getPropertyPrefix() + ".credential.client-id=fake-client-id",
+                getPropertyPrefix() + ".credential." + CLIENT_ID_PLACEHOLDER + "=fakeClientIdPlaceholder",
                 getPropertyPrefix() + ".credential.client-certificate-path=fake-client-cert-path"
             )
             .withConfiguration(AutoConfigurations.of(
@@ -77,7 +79,7 @@ protected void usGovCloudShouldWorkWithUsernamePasswordCredential() {
         getMinimalContextRunner()
             .withPropertyValues(
                 getPropertyPrefix() + ".profile.cloud-type=AZURE_US_GOVERNMENT",
-                getPropertyPrefix() + ".credential.client-id=fake-client-id",
+                getPropertyPrefix() + ".credential." + CLIENT_ID_PLACEHOLDER + "=fakeClientIdPlaceholder",
                 getPropertyPrefix() + ".credential." + USERNAME_PLACEHOLDER + "=fakeNamePlaceholder",
                 getPropertyPrefix() + ".credential." + PASSWORD_PLACEHOLDER + "=fakePasswordPlaceholder"
             )
diff --git a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java
index 1a9aa7288c85..d8c0c4a082bb 100644
--- a/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java
+++ b/sdk/spring/spring-cloud-azure-autoconfigure/src/test/java/com/azure/spring/cloud/autoconfigure/FakeCredentialInTest.java
@@ -16,4 +16,14 @@ public class FakeCredentialInTest {
      * Password placeholder
      */
     public static final String PASSWORD_PLACEHOLDER = "password";
+
+    /**
+     * Client ID placeholder
+     */
+    public static final String CLIENT_ID_PLACEHOLDER = "client-id";
+
+    /**
+     * Secret placeholder
+     */
+    public static final String SECRET = "secret";
 }

From 6d8198e3c1222a45b5a4cd39c2f2f7dc22d4aada Mon Sep 17 00:00:00 2001
From: shafang 
Date: Sat, 29 Oct 2022 14:23:00 -0700
Subject: [PATCH 20/21] remove single file suppression

---
 eng/CredScanSuppression.json | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json
index 639530514a0d..4dedb4a46aac 100644
--- a/eng/CredScanSuppression.json
+++ b/eng/CredScanSuppression.json
@@ -59,24 +59,6 @@
                 "sdk/storage/microsoft-azure-storage-blob/src/test/java/com/microsoft/azure/storage/FakeCredentialInTest.groovy"
             ],
             "_justification": "File contains fake key used by test code."
-        },
-        {
-            "file": [
-                "sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/ConfigurationClientCredentials.java"
-            ],
-            "_justification": "File contains keyword 'secret='."
-        },
-        {
-            "file": [
-                "sdk/core/azure-core/src/main/java/com/azure/core/http/ProxyOptions.java"
-            ],
-            "_justification": "File contains User Login Credentials."
-        },
-        {
-            "file": [
-              "sdk/spring/spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json"
-            ],
-            "_justification": "File contains General Password, such as 'administratorLoginPassword'."
         }
     ]
 }

From 744549ed56d6fc439a832438708845b36010788e Mon Sep 17 00:00:00 2001
From: shafang 
Date: Sat, 29 Oct 2022 15:24:39 -0700
Subject: [PATCH 21/21] address feedbacks

---
 eng/CredScanSuppression.json                     | 16 ++++++++++++++--
 .../ConfigurationClientCredentials.java          |  4 +++-
 .../implementation/FakeCredentialConstants.java  | 15 +++++++++++++++
 3 files changed, 32 insertions(+), 3 deletions(-)
 create mode 100644 sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/FakeCredentialConstants.java

diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json
index 4dedb4a46aac..e9fe1202b288 100644
--- a/eng/CredScanSuppression.json
+++ b/eng/CredScanSuppression.json
@@ -5,7 +5,13 @@
             "placeholder": [
                 "serverappsecret"
             ],
-            "_justification": "Secret used by test code, it is fake."
+            "_justification": "Secret used by jackson json property and test code, it is fake."
+        },
+        {
+            "placeholder": [
+              "administratorLoginPassword"
+            ],
+            "_justification": "Secret used by spring-cloud-azure-integration-tests/test-resources/jdbc/mysql/test-resources.json"
         },
         {
             "placeholder": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
@@ -30,7 +36,7 @@
             "_justification": "Javadoc in azure resourcemanagerhybrid"
         },
         {
-            "file":[
+            "file": [
                 "eng/common/testproxy/dotnet-devcert.pfx",
                 "sdk/cosmos/azure-cosmos/src/test/resources/server.jks",
                 "sdk/cosmos/azure-cosmos/src/test/resources/client.jks",
@@ -48,6 +54,12 @@
             ],
             "_justification": "File contains private key used by test code."
         },
+        {
+            "file": [
+                "sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/FakeCredentialConstants.java"
+            ],
+            "_justification": "File contains fake key used by implementation code."
+        },
         {
             "file": [
                 "sdk/communication/azure-communication-common-perf/src/main/java/com.azure.communication.common.perf/FakeCredentialInTest.java",
diff --git a/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/ConfigurationClientCredentials.java b/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/ConfigurationClientCredentials.java
index 74a8d44bb1ab..c8b0562b8694 100644
--- a/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/ConfigurationClientCredentials.java
+++ b/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/ConfigurationClientCredentials.java
@@ -27,6 +27,8 @@
 import java.util.Map;
 import java.util.stream.Collectors;
 
+import static com.azure.data.appconfiguration.implementation.FakeCredentialConstants.SECRET_PLACEHOLDER;
+
 /**
  * Credentials that authorizes requests to Azure App Configuration. It uses content within the HTTP request to
  * generate the correct "Authorization" header value. {@link ConfigurationCredentialsPolicy} ensures that the content
@@ -156,7 +158,7 @@ private void addSignatureHeader(final URL url, final String httpMethod, final Ma
     private static class CredentialInformation {
         private static final String ENDPOINT = "endpoint=";
         private static final String ID = "id=";
-        private static final String SECRET = "secret=";
+        private static final String SECRET = SECRET_PLACEHOLDER;
 
         private final URL baseUri;
         private final String id;
diff --git a/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/FakeCredentialConstants.java b/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/FakeCredentialConstants.java
new file mode 100644
index 000000000000..02a51850740c
--- /dev/null
+++ b/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/implementation/FakeCredentialConstants.java
@@ -0,0 +1,15 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.azure.data.appconfiguration.implementation;
+
+/**
+ * Never explore this class publicly. It should be only use in internal to gather the fake credential or keyword that
+ * failed the CredScan.
+ */
+public final class FakeCredentialConstants {
+    /**
+     * 'secret=' keyword placeholder.
+     */
+    public static final String SECRET_PLACEHOLDER = "secret=";
+}