diff --git a/.env b/.env new file mode 100644 index 0000000..b2baf36 --- /dev/null +++ b/.env @@ -0,0 +1,8 @@ +DB_ENDPOINT=omds-mysql +DB_PORT=3306 +DB_EXTERNAL_PORT=3306 +DB_NAME=omds +DB_ROOT_PASS=omdsdbpass +DB_USERNAME=omdsdbuser +DB_PASSWORD=omdsdbpass +NO_COLOR=TRUE \ No newline at end of file diff --git a/DockerfileServerDictation.dockerfile b/DockerfileServerDictation.dockerfile new file mode 100644 index 0000000..fa06e84 --- /dev/null +++ b/DockerfileServerDictation.dockerfile @@ -0,0 +1,23 @@ +FROM node:18.13.0-buster AS build-container +WORKDIR /app +RUN mkdir dictation_server +COPY dictation_server/ dictation_server/ +RUN npm install --force -g n && n 18.13.0 \ + && cd dictation_server \ + && npm ci \ + && npm run build \ + && cd .. + +FROM node:18.13.0-alpine +RUN apk --no-cache add tzdata \ + && cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime \ + && apk del tzdata \ + && rm -rf /var/cache/apk/* +WORKDIR /app +RUN mkdir build \ + && mkdir dist \ + && mkdir node_modules +COPY --from=build-container app/dictation_server/dist/ dist/ +COPY --from=build-container app/dictation_server/.env ./ +COPY --from=build-container app/dictation_server/node_modules/ node_modules/ +CMD ["node", "./dist/main.js" ] \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index 0ca446a..0000000 --- a/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# Introduction -TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project. - -# Getting Started -TODO: Guide users through getting your code up and running on their own system. In this section you can talk about: -1. Installation process -2. Software dependencies -3. Latest releases -4. API references - -# Build and Test -TODO: Describe and show how to build your code and run the tests. - -# Contribute -TODO: Explain how other users and developers can contribute to make your code better. - -If you want to learn more about creating good readme files then refer the following [guidelines](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-a-readme?view=azure-devops). You can also seek inspiration from the below readme files: -- [ASP.NET Core](https://github.com/aspnet/Home) -- [Visual Studio Code](https://github.com/Microsoft/vscode) -- [Chakra Core](https://github.com/Microsoft/ChakraCore) \ No newline at end of file diff --git a/azure-pipelines-production.yml b/azure-pipelines-production.yml new file mode 100644 index 0000000..5c57493 --- /dev/null +++ b/azure-pipelines-production.yml @@ -0,0 +1,56 @@ +trigger: + tags: + include: + - release-* + +jobs: +- job: initialize + displayName: Initialize + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + clean: true + fetchDepth: 1 + - script: | + git fetch origin main:main + if git merge-base --is-ancestor $(Build.SourceVersion) main; then + echo "This commit is in the main branch." + else + echo "This commit is not in the main branch." + exit 1 + fi + displayName: 'タグが付けられたCommitがmainブランチに存在するか確認' +- job: backend_build + dependsOn: initialize + condition: succeeded('initialize') + displayName: Dictation App Service Deploy + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + clean: true + fetchDepth: 1 +- job: frontend_build + dependsOn: initialize + condition: succeeded('initialize') + displayName: Dictation Static App Service Deploy + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + clean: true + fetchDepth: 1 +- job: migration + condition: succeeded('initialize') + displayName: DB migration + dependsOn: + - initialize + - backend_build + - frontend_build + pool: + name: db-migrate-pipelines + steps: + - checkout: self + clean: true + fetchDepth: 1 diff --git a/azure-pipelines-staging.yml b/azure-pipelines-staging.yml new file mode 100644 index 0000000..4495b2c --- /dev/null +++ b/azure-pipelines-staging.yml @@ -0,0 +1,59 @@ +trigger: + branches: + include: + - main + tags: + include: + - stage-* + +jobs: +- job: initialize + displayName: Initialize + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + clean: true + fetchDepth: 1 + - script: | + git fetch origin main:main + if git merge-base --is-ancestor $(Build.SourceVersion) main; then + echo "This commit is in the main branch." + else + echo "This commit is not in the main branch." + exit 1 + fi + displayName: 'タグが付けられたCommitがmainブランチに存在するか確認' +- job: backend_build + dependsOn: initialize + condition: succeeded('initialize') + displayName: Dictation App Service Deploy + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + clean: true + fetchDepth: 1 +- job: frontend_build + dependsOn: initialize + condition: succeeded('initialize') + displayName: Dictation Static App Service Deploy + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + clean: true + fetchDepth: 1 +- job: migration + condition: succeeded('initialize') + displayName: DB migration + dependsOn: + - initialize + - backend_build + - frontend_build + pool: + name: db-migrate-pipelines + steps: + - checkout: self + clean: true + fetchDepth: 1 \ No newline at end of file diff --git a/azure-static-web-apps-purple-forest-07b9d5300.yml b/azure-static-web-apps-purple-forest-07b9d5300.yml new file mode 100644 index 0000000..2525a6e --- /dev/null +++ b/azure-static-web-apps-purple-forest-07b9d5300.yml @@ -0,0 +1,32 @@ +name: Azure Static Web Apps CI/CD + +pr: + branches: + include: + - develop +trigger: + branches: + include: + - develop + +jobs: +- job: build_and_deploy_job + displayName: Build and Deploy Job + condition: or(eq(variables['Build.Reason'], 'Manual'),or(eq(variables['Build.Reason'], 'PullRequest'),eq(variables['Build.Reason'], 'IndividualCI'))) + pool: + vmImage: ubuntu-latest + variables: + - group: Azure-Static-Web-Apps-purple-forest-07b9d5300-variable-group + steps: + - checkout: self + submodules: true + - task: AzureStaticWebApp@0 + inputs: + azure_static_web_apps_api_token: $(AZURE_STATIC_WEB_APPS_API_TOKEN_PURPLE_FOREST_07B9D5300) +###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### +# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "/" # App source code path + api_location: "" # Api source code path - optional + output_location: "" # Built app content directory - optional +###### End of Repository/Build Configurations ###### + diff --git a/cache/.gitignore b/cache/.gitignore new file mode 100644 index 0000000..f142970 --- /dev/null +++ b/cache/.gitignore @@ -0,0 +1 @@ +dump.rdb \ No newline at end of file diff --git a/configurations/azure/dev-application-rg.json b/configurations/azure/dev-application-rg.json new file mode 100644 index 0000000..7fc24af --- /dev/null +++ b/configurations/azure/dev-application-rg.json @@ -0,0 +1,5249 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "Redis_redis_odms_cache_dev_name": { + "type": "String" + }, + "actiongroups_application_insights_smart_detection_externalid": { + "type": "String" + }, + "components_app_odms_dictation_dev_name": { + "type": "String" + }, + "components_odmsdictationdev_externalid": { + "type": "String" + }, + "networkInterfaces_pep_odms_redis_dev_nic_bf39a332_b61d_4c0d_9adf_4a09a0af6267_name": { + "type": "String" + }, + "privateDnsZones_privatelink_azurewebsites_net_name": { + "type": "String" + }, + "privateDnsZones_privatelink_redis_cache_windows_net_externalid": { + "type": "String" + }, + "privateEndpoints_pep_odms_redis_dev_name": { + "type": "String" + }, + "serverfarms_asp_odms_plan_dev_name": { + "type": "String" + }, + "sites_app_odms_dictation_dev_name": { + "type": "String" + }, + "sites_app_odms_dictation_test_name": { + "type": "String" + }, + "smartdetectoralertrules_failure_anomalies___app_odms_dictation_dev_name": { + "type": "String" + }, + "smartdetectoralertrules_failure_anomalies___odmsdictationdev_name": { + "type": "String" + }, + "staticSites_staapp_odms_dictation_dev_name": { + "type": "String" + }, + "staticSites_staapp_odms_dictation_test_name": { + "type": "String" + }, + "storageAccounts_saomdsdevelop_name": { + "type": "String" + }, + "storageAccounts_saomdsdictationdevus_name": { + "type": "String" + }, + "vaults_kv_odms_secret_dev_name": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_dev_externalid_1": { + "type": "String" + }, + "virtualnetworks_vnet_odms_network_dev_externalid": { + "type": "String" + }, + "virtualnetworks_vnet_odms_network_maintenance_externalid": { + "type": "String" + }, + "workspaces_DefaultWorkspace_108fb131_cdca_4729_a2be_e5bd8c0b3ba7_EJP_externalid": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2021-04-01", + "location": "global", + "name": "[parameters('smartdetectoralertrules_failure_anomalies___odmsdictationdev_name')]", + "properties": { + "actionGroups": { + "groupIds": [ + "[parameters('actiongroups_application_insights_smart_detection_externalid')]" + ] + }, + "description": "Failure Anomalies notifies you of an unusual rise in the rate of failed HTTP requests or dependency calls.", + "detector": { + "id": "FailureAnomaliesDetector" + }, + "frequency": "PT1M", + "scope": [ + "[parameters('components_odmsdictationdev_externalid')]" + ], + "severity": "Sev3", + "state": "Enabled" + }, + "type": "microsoft.alertsmanagement/smartdetectoralertrules" + }, + { + "apiVersion": "2023-05-01-preview", + "location": "Japan East", + "name": "[parameters('Redis_redis_odms_cache_dev_name')]", + "properties": { + "enableNonSslPort": false, + "publicNetworkAccess": "Disabled", + "redisConfiguration": { + "maxfragmentationmemory-reserved": "125", + "maxmemory-delta": "125", + "maxmemory-reserved": "125" + }, + "redisVersion": "6.0", + "sku": { + "capacity": 1, + "family": "C", + "name": "Basic" + } + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Cache/Redis" + }, + { + "apiVersion": "2020-02-02", + "kind": "web", + "location": "japaneast", + "name": "[parameters('components_app_odms_dictation_dev_name')]", + "properties": { + "Application_Type": "web", + "Flow_Type": "Redfield", + "IngestionMode": "Disabled", + "Request_Source": "IbizaWebAppExtensionCreate", + "RetentionInDays": 90, + "WorkspaceResourceId": "[parameters('workspaces_DefaultWorkspace_108fb131_cdca_4729_a2be_e5bd8c0b3ba7_EJP_externalid')]", + "publicNetworkAccessForIngestion": "Enabled", + "publicNetworkAccessForQuery": "Enabled" + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "microsoft.insights/components" + }, + { + "apiVersion": "2023-02-01", + "location": "japaneast", + "name": "[parameters('vaults_kv_odms_secret_dev_name')]", + "properties": { + "accessPolicies": [ + { + "objectId": "8625d7c1-e5fb-47d9-bd6a-93fc4350480e", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "applicationId": "e4d19ba6-ad46-434f-a733-f383b109f371", + "objectId": "d4c89d40-8e45-4086-9a78-bda641d2b0f1", + "permissions": { + "certificates": [], + "keys": [ + "Get" + ], + "secrets": [ + "Get" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "a40c7e0a-0f67-4d6d-a879-8a6f0d1c40e8", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate", + "Encrypt", + "Decrypt", + "UnwrapKey", + "WrapKey", + "Verify", + "Sign" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "621875eb-79da-46a1-be99-9172e2e4bbd4", + "permissions": { + "certificates": [], + "keys": [], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "980776e9-10b6-494b-a632-da8c55b80b9f", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore", + "Purge" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "df083779-38ab-45e5-9300-2d32bcc3ca16", + "permissions": { + "certificates": [], + "keys": [], + "secrets": [ + "Get", + "List" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "3be7afbe-1639-4a16-a983-db172e5fc8a9", + "permissions": { + "certificates": [], + "keys": [], + "secrets": [ + "Get", + "List" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "d4c89d40-8e45-4086-9a78-bda641d2b0f1", + "permissions": { + "certificates": [], + "keys": [], + "secrets": [ + "Get" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "3ef6b610-6a63-454d-a7ee-bf3b6ec4c8fe", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "d17af452-c5de-4bb7-b62a-60cf4507d8bf", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers", + "Purge" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate", + "Encrypt", + "Decrypt", + "UnwrapKey", + "WrapKey", + "Verify", + "Sign", + "Purge", + "Release" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore", + "Purge" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "6ba25ad0-5375-41dc-bd91-d23edd5fd2cd", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "06769342-c9d0-4833-80bd-6093635e3843", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers", + "Purge" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate", + "Purge", + "Release", + "Encrypt", + "Decrypt", + "UnwrapKey", + "WrapKey", + "Verify", + "Sign" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore", + "Purge" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "38ef42c9-2bce-4d67-aea5-1659b2b732f8", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [], + "secrets": [ + "Get" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "dcb05c99-b93b-45de-a127-5be1eb798152", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "b0b4dfd6-8265-4634-a6f1-832d8a4a503d", + "permissions": { + "certificates": [], + "keys": [], + "secrets": [ + "Get", + "List" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + } + ], + "enableRbacAuthorization": false, + "enableSoftDelete": true, + "enabledForDeployment": false, + "enabledForDiskEncryption": false, + "enabledForTemplateDeployment": false, + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Deny", + "ipRules": [ + { + "value": "175.177.42.17/32" + }, + { + "value": "60.97.55.122/32" + } + ], + "virtualNetworkRules": [ + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-endpoint-dev')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-public-dev')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-integration-dev')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-gateway-dev')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-private-dev')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_maintenance_externalid'), '/subnets/snet-odms-deploy-maintenance')]", + "ignoreMissingVnetServiceEndpoint": false + } + ] + }, + "provisioningState": "Succeeded", + "publicNetworkAccess": "Enabled", + "sku": { + "family": "A", + "name": "Standard" + }, + "softDeleteRetentionInDays": 90, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a", + "vaultUri": "[concat('https://', parameters('vaults_kv_odms_secret_dev_name'), '.vault.azure.net/')]" + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.KeyVault/vaults" + }, + { + "apiVersion": "2022-11-01", + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_pep_odms_redis_dev_nic_bf39a332_b61d_4c0d_9adf_4a09a0af6267_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"5aa91728-3087-4ffc-88eb-99070b40060f\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_redis_dev_nic_bf39a332_b61d_4c0d_9adf_4a09a0af6267_name')), '/ipConfigurations/privateEndpointIpConfig.5043f5ca-61e6-43e2-8faa-c6f377677296')]", + "name": "privateEndpointIpConfig.5043f5ca-61e6-43e2-8faa-c6f377677296", + "properties": { + "primary": true, + "privateIPAddress": "10.1.1.7", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "redis-odms-cache-dev.redis.cache.windows.net" + ], + "groupId": "redisCache", + "requiredMemberName": "redisCache" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_azurewebsites_net_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 1, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "westus2", + "name": "[parameters('storageAccounts_saomdsdevelop_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": true, + "allowCrossTenantReplication": false, + "allowSharedKeyAccess": true, + "defaultToOAuthAuthentication": false, + "dnsEndpointType": "Standard", + "encryption": { + "keySource": "Microsoft.Storage", + "requireInfrastructureEncryption": true, + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "isHnsEnabled": true, + "isSftpEnabled": false, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Deny", + "ipRules": [ + { + "action": "Allow", + "value": "153.161.148.137" + } + ], + "resourceAccessRules": [], + "virtualNetworkRules": [] + }, + "publicNetworkAccess": "Enabled", + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_RAGRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "centralus", + "name": "[parameters('storageAccounts_saomdsdictationdevus_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": false, + "allowCrossTenantReplication": false, + "allowSharedKeyAccess": true, + "allowedCopyScope": "AAD", + "defaultToOAuthAuthentication": false, + "dnsEndpointType": "Standard", + "encryption": { + "keySource": "Microsoft.Storage", + "requireInfrastructureEncryption": true, + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Allow", + "ipRules": [], + "virtualNetworkRules": [] + }, + "publicNetworkAccess": "Enabled", + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_RAGZRS", + "tier": "Standard" + }, + "tags": { + "Environment": "develop" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2022-09-01", + "kind": "linux", + "location": "Japan East", + "name": "[parameters('serverfarms_asp_odms_plan_dev_name')]", + "properties": { + "elasticScaleEnabled": false, + "freeOfferExpirationTime": "2023-05-18T11:13:23.0633333", + "hyperV": false, + "isSpot": false, + "isXenon": false, + "maximumElasticWorkerCount": 1, + "perSiteScaling": false, + "reserved": true, + "targetWorkerCount": 0, + "targetWorkerSizeId": 0, + "zoneRedundant": false + }, + "sku": { + "capacity": 1, + "family": "B", + "name": "B1", + "size": "B1", + "tier": "Basic" + }, + "type": "Microsoft.Web/serverfarms" + }, + { + "apiVersion": "2022-09-01", + "location": "East Asia", + "name": "[parameters('staticSites_staapp_odms_dictation_dev_name')]", + "properties": { + "allowConfigFileUpdates": true, + "branch": "develop", + "enterpriseGradeCdnStatus": "Disabled", + "provider": "DevOps", + "repositoryUrl": "https://dev.azure.com/ODMSCloud/ODMS Cloud/_git/ODMS Cloud", + "stagingEnvironmentPolicy": "Enabled" + }, + "sku": { + "name": "Standard", + "tier": "Standard" + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Web/staticSites" + }, + { + "apiVersion": "2022-09-01", + "location": "East Asia", + "name": "[parameters('staticSites_staapp_odms_dictation_test_name')]", + "properties": { + "allowConfigFileUpdates": true, + "enterpriseGradeCdnStatus": "Disabled", + "provider": "None", + "stagingEnvironmentPolicy": "Enabled" + }, + "sku": { + "name": "Free", + "tier": "Free" + }, + "tags": { + "Environment": "test", + "Project": "OMDS" + }, + "type": "Microsoft.Web/staticSites" + }, + { + "apiVersion": "2021-04-01", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "global", + "name": "[parameters('smartdetectoralertrules_failure_anomalies___app_odms_dictation_dev_name')]", + "properties": { + "actionGroups": { + "groupIds": [ + "[parameters('actiongroups_application_insights_smart_detection_externalid')]" + ] + }, + "description": "Failure Anomalies notifies you of an unusual rise in the rate of failed HTTP requests or dependency calls.", + "detector": { + "id": "FailureAnomaliesDetector" + }, + "frequency": "PT1M", + "scope": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "severity": "Sev3", + "state": "Enabled" + }, + "type": "microsoft.alertsmanagement/smartdetectoralertrules" + }, + { + "apiVersion": "2023-05-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_dev_name'))]" + ], + "name": "[concat(parameters('Redis_redis_odms_cache_dev_name'), '/Data Contributor')]", + "properties": { + "permissions": "+@all -@dangerous +cluster|info +cluster|nodes +cluster|slots allkeys" + }, + "type": "Microsoft.Cache/Redis/accessPolicies" + }, + { + "apiVersion": "2023-05-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_dev_name'))]" + ], + "name": "[concat(parameters('Redis_redis_odms_cache_dev_name'), '/Data Owner')]", + "properties": { + "permissions": "+@all allkeys" + }, + "type": "Microsoft.Cache/Redis/accessPolicies" + }, + { + "apiVersion": "2023-05-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_dev_name'))]" + ], + "name": "[concat(parameters('Redis_redis_odms_cache_dev_name'), '/Data Reader')]", + "properties": { + "permissions": "+@read +@connection +cluster|info +cluster|nodes +cluster|slots allkeys" + }, + "type": "Microsoft.Cache/Redis/accessPolicies" + }, + { + "apiVersion": "2023-05-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_dev_name'))]" + ], + "name": "[concat(parameters('Redis_redis_odms_cache_dev_name'), '/pep-odms-redis-dev.110d7b81-3121-409b-8b2e-53994acb331b')]", + "properties": { + "privateEndpoint": {}, + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "description": "Auto-Approved", + "status": "Approved" + } + }, + "type": "Microsoft.Cache/Redis/privateEndpointConnections" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/degradationindependencyduration')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Degradation in dependency duration", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "degradationindependencyduration", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/degradationinserverresponsetime')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Degradation in server response time", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "degradationinserverresponsetime", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/digestMailConfiguration')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This rule describes the digest mail preferences", + "DisplayName": "Digest Mail Configuration", + "HelpUrl": "www.homail.com", + "IsEnabledByDefault": true, + "IsHidden": true, + "IsInPreview": false, + "Name": "digestMailConfiguration", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/extension_billingdatavolumedailyspikeextension')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the billing data generated by your application, and can warn you about an unusual increase in your application's billing costs", + "DisplayName": "Abnormal rise in daily data volume (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/tree/master/SmartDetection/billing-data-volume-daily-spike.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_billingdatavolumedailyspikeextension", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/extension_canaryextension')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Canary extension", + "DisplayName": "Canary extension", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/blob/master/SmartDetection/", + "IsEnabledByDefault": true, + "IsHidden": true, + "IsInPreview": true, + "Name": "extension_canaryextension", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/extension_exceptionchangeextension')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the exceptions thrown in your application, and can warn you about unusual patterns in your exception telemetry.", + "DisplayName": "Abnormal rise in exception volume (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/blob/master/SmartDetection/abnormal-rise-in-exception-volume.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_exceptionchangeextension", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/extension_memoryleakextension')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the memory consumption of each process in your application, and can warn you about potential memory leaks or increased memory consumption.", + "DisplayName": "Potential memory leak detected (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/tree/master/SmartDetection/memory-leak.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_memoryleakextension", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/extension_securityextensionspackage')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the telemetry generated by your application and detects potential security issues.", + "DisplayName": "Potential security issue detected (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/blob/master/SmartDetection/application-security-detection-pack.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_securityextensionspackage", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/extension_traceseveritydetector')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the trace logs emitted from your application, and can warn you about unusual patterns in the severity of your trace telemetry.", + "DisplayName": "Degradation in trace severity ratio (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/blob/master/SmartDetection/degradation-in-trace-severity-ratio.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_traceseveritydetector", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/longdependencyduration')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Long dependency duration", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "longdependencyduration", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/migrationToAlertRulesCompleted')]", + "properties": { + "customEmails": [], + "enabled": false, + "ruleDefinitions": { + "Description": "A configuration that controls the migration state of Smart Detection to Smart Alerts", + "DisplayName": "Migration To Alert Rules Completed", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": false, + "IsHidden": true, + "IsInPreview": true, + "Name": "migrationToAlertRulesCompleted", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/slowpageloadtime')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Slow page load time", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "slowpageloadtime", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_dev_name'), '/slowserverresponsetime')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Slow server response time", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "slowserverresponsetime", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/ca-odms-agw-dev')]", + "properties": { + "attributes": { + "enabled": true, + "exp": 1713433440, + "nbf": 1681809840 + } + }, + "type": "Microsoft.KeyVault/vaults/keys" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/adb2c-client-id')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/adb2c-client-secret')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/adb2c-tenant-id')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/ca-odms-agw-dev')]", + "properties": { + "attributes": { + "enabled": true, + "exp": 1713433440, + "nbf": 1681809840 + }, + "contentType": "application/x-pkcs12" + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/db-host')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/db-name')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/db-pass')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/db-port')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/db-user')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/notification-hub-connect-string')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/notification-hub-name')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/redis-host')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/redis-password')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/redis-port')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/sendgrid-api-key')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-endpoint-au')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-endpoint-eu')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-endpoint-us')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-key-au')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-key-eu')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-key-us')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-name-au')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-name-eu')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/storage-account-name-us')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/token-private-key')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "tags": { + "file-encoding": "utf-8" + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_dev_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_dev_name'), '/token-public-key')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "tags": { + "file-encoding": "utf-8" + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_dev_name'))]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_pep_odms_redis_dev_name')]", + "properties": { + "customDnsConfigs": [], + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_redis_dev_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_pep_odms_redis_dev_name'), '_eaeb2f18-9306-44bd-a7c7-3b0b3b7ed071'))]", + "name": "[concat(parameters('privateEndpoints_pep_odms_redis_dev_name'), '_eaeb2f18-9306-44bd-a7c7-3b0b3b7ed071')]", + "properties": { + "groupIds": [ + "redisCache" + ], + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "description": "Auto-Approved", + "status": "Approved" + }, + "privateLinkServiceId": "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_dev_name'))]" + } + } + ], + "subnet": { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_redis_dev_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_pep_odms_redis_dev_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-redis-cache-windows-net", + "properties": { + "privateDnsZoneId": "[parameters('privateDnsZones_privatelink_redis_cache_windows_net_externalid')]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdevelop_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdevelop_name'), '/default')]", + "properties": { + "containerDeleteRetentionPolicy": { + "days": 7, + "enabled": true + }, + "cors": { + "corsRules": [] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "days": 7, + "enabled": true + } + }, + "sku": { + "name": "Standard_RAGRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdictationdevus_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdictationdevus_name'), '/default')]", + "properties": { + "changeFeed": { + "enabled": true + }, + "containerDeleteRetentionPolicy": { + "days": 7, + "enabled": true + }, + "cors": { + "corsRules": [ + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "POST", + "DELETE", + "GET", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:3000" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 86400 + }, + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "POST", + "PUT", + "DELETE", + "GET" + ], + "allowedOrigins": [ + "http://localhost8081" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 86400 + } + ] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "days": 7, + "enabled": true + }, + "isVersioningEnabled": true, + "restorePolicy": { + "enabled": false + } + }, + "sku": { + "name": "Standard_RAGZRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdevelop_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdevelop_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 7, + "enabled": true + } + }, + "sku": { + "name": "Standard_RAGRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdictationdevus_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdictationdevus_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 0, + "enabled": false + } + }, + "sku": { + "name": "Standard_RAGZRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdevelop_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdevelop_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdictationdevus_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdictationdevus_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdevelop_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdevelop_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdictationdevus_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdictationdevus_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/serverfarms', parameters('serverfarms_asp_odms_plan_dev_name'))]" + ], + "identity": { + "type": "SystemAssigned" + }, + "kind": "app,linux,container", + "location": "Japan East", + "name": "[parameters('sites_app_odms_dictation_dev_name')]", + "properties": { + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "994FB83D64A1631E64DF4829983A6AC58B12552E20EF98888EE17E540C35A0FF", + "dailyMemoryTimeQuota": 0, + "enabled": true, + "hostNameSslStates": [ + { + "hostType": "Standard", + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '.azurewebsites.net')]", + "sslState": "Disabled" + }, + { + "hostType": "Repository", + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '.scm.azurewebsites.net')]", + "sslState": "Disabled" + } + ], + "hostNamesDisabled": false, + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "reserved": true, + "scmSiteAlsoStopped": false, + "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('serverfarms_asp_odms_plan_dev_name'))]", + "siteConfig": { + "acrUseManagedIdentityCreds": true, + "alwaysOn": false, + "functionAppScaleLimit": 0, + "http20Enabled": false, + "linuxFxVersion": "DOCKER|crodmsregistrymaintenance.azurecr.io/odmscloud/dictation:latest", + "minimumElasticInstanceCount": 0, + "numberOfWorkers": 1 + }, + "storageAccountRequired": false, + "virtualNetworkSubnetId": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-integration-dev')]", + "vnetContentShareEnabled": false, + "vnetImagePullEnabled": true, + "vnetRouteAllEnabled": true + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/serverfarms', parameters('serverfarms_asp_odms_plan_dev_name'))]" + ], + "identity": { + "type": "SystemAssigned" + }, + "kind": "app,linux,container", + "location": "Japan East", + "name": "[parameters('sites_app_odms_dictation_test_name')]", + "properties": { + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "994FB83D64A1631E64DF4829983A6AC58B12552E20EF98888EE17E540C35A0FF", + "dailyMemoryTimeQuota": 0, + "enabled": true, + "hostNameSslStates": [ + { + "hostType": "Standard", + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '.azurewebsites.net')]", + "sslState": "Disabled" + }, + { + "hostType": "Repository", + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '.scm.azurewebsites.net')]", + "sslState": "Disabled" + } + ], + "hostNamesDisabled": false, + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "reserved": true, + "scmSiteAlsoStopped": false, + "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('serverfarms_asp_odms_plan_dev_name'))]", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "functionAppScaleLimit": 0, + "http20Enabled": false, + "linuxFxVersion": "DOCKER|mcr.microsoft.com/appsvc/staticsite:latest", + "minimumElasticInstanceCount": 0, + "numberOfWorkers": 1 + }, + "storageAccountRequired": false, + "virtualNetworkSubnetId": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-integration-dev')]", + "vnetContentShareEnabled": false, + "vnetImagePullEnabled": false, + "vnetRouteAllEnabled": true + }, + "tags": { + "Environment": "test", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/ftp')]", + "properties": { + "allow": true + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/ftp')]", + "properties": { + "allow": true + }, + "tags": { + "Environment": "test", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/scm')]", + "properties": { + "allow": true + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/scm')]", + "properties": { + "allow": true + }, + "tags": { + "Environment": "test", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/web')]", + "properties": { + "acrUseManagedIdentityCreds": true, + "alwaysOn": false, + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "elasticWebAppScaleLimit": 0, + "experiments": { + "rampUpRules": [] + }, + "ftpsState": "FtpsOnly", + "functionsRuntimeScaleMonitoringEnabled": false, + "healthCheckPath": "/health", + "http20Enabled": false, + "httpLoggingEnabled": true, + "ipSecurityRestrictions": [ + { + "action": "Allow", + "priority": 300, + "tag": "Default", + "vnetSubnetResourceId": "[concat(parameters('virtualNetworks_vnet_odms_network_dev_externalid_1'), '/subnets/snet-odms-gateway-dev')]" + }, + { + "action": "Deny", + "description": "Deny all access", + "ipAddress": "Any", + "name": "Deny all", + "priority": 2147483647 + } + ], + "ipSecurityRestrictionsDefaultAction": "Deny", + "linuxFxVersion": "DOCKER|crodmsregistrymaintenance.azurecr.io/odmscloud/dictation:latest", + "loadBalancing": "LeastRequests", + "localMySqlEnabled": false, + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "managedServiceIdentityId": 6741, + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "numberOfWorkers": 1, + "preWarmedInstanceCount": 0, + "publicNetworkAccess": "Enabled", + "publishingUsername": "$app-odms-dictation-dev", + "remoteDebuggingEnabled": false, + "remoteDebuggingVersion": "VS2019", + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "action": "Allow", + "ipAddress": "20.191.160.142/32", + "name": "Allow Deploy", + "priority": 300, + "tag": "Default" + }, + { + "action": "Allow", + "description": "Allow all access", + "ipAddress": "Any", + "name": "Allow all", + "priority": 2147483647 + } + ], + "scmIpSecurityRestrictionsDefaultAction": "Allow", + "scmIpSecurityRestrictionsUseMain": false, + "scmMinTlsVersion": "1.2", + "scmType": "None", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "42f36788-3f79-4f07-aa30-ac3aaec28356_snet-odms-integration-dev", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": true, + "webSocketsEnabled": false, + "websiteTimeZone": "UTC" + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/config" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/web')]", + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "elasticWebAppScaleLimit": 0, + "experiments": { + "rampUpRules": [] + }, + "ftpsState": "FtpsOnly", + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "action": "Allow", + "priority": 300, + "tag": "Default", + "vnetSubnetResourceId": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-gateway-dev')]" + }, + { + "action": "Deny", + "description": "Deny all access", + "ipAddress": "Any", + "name": "Deny all", + "priority": 2147483647 + } + ], + "ipSecurityRestrictionsDefaultAction": "Deny", + "linuxFxVersion": "DOCKER|mcr.microsoft.com/appsvc/staticsite:latest", + "loadBalancing": "LeastRequests", + "localMySqlEnabled": false, + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "managedServiceIdentityId": 8236, + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "numberOfWorkers": 1, + "preWarmedInstanceCount": 0, + "publicNetworkAccess": "Enabled", + "publishingUsername": "$app-odms-dictation-test", + "remoteDebuggingEnabled": false, + "remoteDebuggingVersion": "VS2019", + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "action": "Allow", + "description": "Allow all access", + "ipAddress": "Any", + "name": "Allow all", + "priority": 2147483647 + } + ], + "scmIpSecurityRestrictionsDefaultAction": "Allow", + "scmIpSecurityRestrictionsUseMain": false, + "scmMinTlsVersion": "1.2", + "scmType": "None", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "42f36788-3f79-4f07-aa30-ac3aaec28356_snet-odms-integration-dev", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": true, + "webSocketsEnabled": false + }, + "tags": { + "Environment": "test", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/config" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/', parameters('sites_app_odms_dictation_dev_name'), '.azurewebsites.net')]", + "properties": { + "hostNameType": "Verified", + "siteName": "app-odms-dictation-dev" + }, + "type": "Microsoft.Web/sites/hostNameBindings" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/', parameters('sites_app_odms_dictation_test_name'), '.azurewebsites.net')]", + "properties": { + "hostNameType": "Verified", + "siteName": "app-odms-dictation-test" + }, + "type": "Microsoft.Web/sites/hostNameBindings" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/pep-odms-app-dev-8d56-2eef6883-e656-4e84-9102-241f1eae3362')]", + "properties": { + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "status": "Approved" + } + }, + "type": "Microsoft.Web/sites/privateEndpointConnections" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/pep-odms-app-test-81c1-170220ad-f9c2-4d65-bc1d-e5e6b51c77bf')]", + "properties": { + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "status": "Approved" + } + }, + "type": "Microsoft.Web/sites/privateEndpointConnections" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-01T17_01_52_4395401')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-02T04_01_52_2400192')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-02T17_01_51_9789811')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-03T04_01_51_7789502')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-03T17_01_51_5770420')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-04T04_01_51_3402147')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-04T17_01_51_0822643')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-05T04_01_50_9409054')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-05T17_01_50_6522437')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-06T04_01_50_4479253')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-06T17_01_50_2125604')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-07T04_01_50_0322469')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-07T17_01_49_8193488')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-08T04_01_49_5843552')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-08T17_01_50_1290974')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-09T04_01_49_9252056')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-09T17_01_49_6538333')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-10T04_01_49_5006919')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-10T17_01_49_2983259')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-11T04_01_49_0800782')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-11T17_01_48_8259455')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-12T04_01_48_6948488')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-12T17_01_48_3447900')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-13T04_01_48_1928663')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-13T17_01_47_8950195')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-14T04_01_47_7071785')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-14T17_01_47_4165128')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-15T04_01_47_2621022')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-15T17_01_47_0141878')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-16T04_01_46_7880521')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-16T17_01_46_5747777')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-17T01_01_46_4607542')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-17T04_01_46_4179744')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-17T07_01_46_3362308')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-17T10_01_46_2603804')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-17T13_01_46_2245552')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-17T17_01_46_1511214')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-18T01_01_46_0614808')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-18T04_01_45_9990951')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-18T07_01_45_9688959')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-18T10_01_45_8963053')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-18T13_01_45_8351009')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-18T17_01_45_7011551')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-19T01_01_45_5876180')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-19T04_01_45_5277605')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-19T07_01_45_4522654')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-19T10_01_45_4333505')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-19T13_01_45_3533270')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-19T17_01_45_3353090')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-20T01_01_45_1943436')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-20T04_01_45_1427344')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-20T07_01_45_0899981')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-20T10_01_45_0307686')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-20T10_01_45_0307686')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-20T13_01_44_9867133')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-20T13_01_44_9867133')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-20T17_01_45_2104714')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-20T17_01_45_2104714')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-21T01_01_45_1396987')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-21T01_01_45_1396987')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-21T04_01_45_0982470')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-21T04_01_45_0982470')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-21T07_01_44_9719062')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-21T07_01_44_9719062')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-21T10_01_44_9374810')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-21T10_01_44_9374810')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-21T13_01_44_9024775')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-21T13_01_44_9024775')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-21T17_01_44_7579293')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-21T17_01_44_7579293')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-22T01_01_44_6663762')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-22T01_01_44_6663762')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-22T04_01_44_6277776')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-22T04_01_44_6277776')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-22T07_01_44_4999198')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-22T07_01_44_4999198')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-22T10_01_44_4384546')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-22T10_01_44_4384546')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-22T13_01_44_4312483')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-22T13_01_44_4312483')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-22T17_01_44_3376946')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-22T17_01_44_3376946')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-23T01_01_44_2025387')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-23T01_01_44_2025387')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-23T04_01_44_1623043')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-23T04_01_44_1623043')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-23T07_01_44_0708065')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-23T07_01_44_0708065')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-23T10_01_44_0025943')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-23T10_01_44_0025943')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-23T13_01_44_0782081')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-23T13_01_44_0782081')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-23T17_01_43_8807935')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-23T17_01_43_8807935')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-24T01_01_43_7751506')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-24T01_01_43_7751506')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-24T04_01_44_2020408')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-24T04_01_44_2020408')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-24T07_01_44_1376848')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-24T07_01_44_1376848')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-24T10_01_44_0795777')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-24T10_01_44_0795777')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-24T13_01_44_0312289')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-24T13_01_44_0312289')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-24T17_01_43_9680803')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-24T17_01_43_9680803')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-25T01_01_43_8023518')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-25T01_01_43_8023518')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-25T04_01_43_7272741')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-25T04_01_43_7272741')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-25T07_01_43_7059167')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-25T07_01_43_7059167')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-25T10_01_43_6454601')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-25T10_01_43_6454601')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-25T13_01_43_6025988')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-25T13_01_43_6025988')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-25T17_01_43_5239205')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-25T17_01_43_5239205')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-26T01_01_43_4224155')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-26T01_01_43_4224155')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-26T04_01_43_3577583')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-26T04_01_43_3577583')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-26T07_01_43_4293020')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-26T07_01_43_4293020')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-26T10_01_43_2761418')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-26T10_01_43_2761418')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-26T13_01_43_2152656')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-26T13_01_43_2152656')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-26T17_01_43_1399522')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-26T17_01_43_1399522')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-26T23_01_43_0606270')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-26T23_01_43_0606270')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T00_01_43_1250092')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T00_01_43_1250092')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T01_01_43_0826445')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T01_01_43_0826445')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T02_01_43_0323058')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T02_01_43_0323058')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T03_01_43_0109514')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T03_01_43_0109514')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T04_01_43_0417973')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T04_01_43_0417973')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T05_01_43_0007284')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T05_01_43_0007284')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T06_01_43_0325708')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T06_01_43_0325708')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T07_01_43_0042972')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T07_01_43_0042972')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T08_01_42_9815882')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T08_01_42_9815882')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T09_01_42_9455066')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T09_01_42_9455066')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T10_01_42_9305634')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T10_01_42_9305634')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T11_01_42_9043557')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T11_01_42_9043557')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T12_01_42_8871667')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T12_01_42_8871667')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T13_01_42_8450814')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T13_01_42_8450814')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T14_01_42_8370788')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T14_01_42_8370788')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T15_01_42_8247235')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T15_01_42_8247235')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T16_01_42_8121251')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T16_01_42_8121251')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T17_01_43_6908762')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T17_01_43_6908762')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T18_01_43_6353075')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T18_01_43_6353075')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T19_01_43_6019495')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T19_01_43_6019495')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T20_01_43_6173476')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T20_01_43_6173476')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T21_01_43_6719049')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T21_01_43_6719049')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T22_01_43_6755935')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T22_01_43_6755935')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-27T23_01_43_6571223')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-27T23_01_43_6571223')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T00_01_43_6994484')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T00_01_43_6994484')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T01_01_43_6269764')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T01_01_43_6269764')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T02_01_43_6544885')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T02_01_43_6544885')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T03_01_44_3657976')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T03_01_44_3657976')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T04_01_44_3029602')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T04_01_44_3029602')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T05_01_44_3080304')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T05_01_44_3080304')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T06_01_44_3642056')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T06_01_44_3642056')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T07_01_44_2852407')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T07_01_44_2852407')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T08_01_44_5810534')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T08_01_44_5810534')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T09_01_44_5159115')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T09_01_44_5159115')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T10_01_45_1201414')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T10_01_45_1201414')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T11_01_45_0878270')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T11_01_45_0878270')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T12_01_45_0837159')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T12_01_45_0837159')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T13_01_45_0806793')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T13_01_45_0806793')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T14_01_45_1702799')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T14_01_45_1702799')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T15_01_45_0359622')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T15_01_45_0359622')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T16_01_45_0655856')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T16_01_45_0655856')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T17_01_45_0354025')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T17_01_45_0354025')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T18_01_44_9970312')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T18_01_44_9970312')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T19_01_44_9626034')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T19_01_44_9626034')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T20_01_44_9682298')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T20_01_44_9682298')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T21_01_44_9578344')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T21_01_44_9578344')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T22_01_44_9204091')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T22_01_44_9204091')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-28T23_01_44_9621364')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-28T23_01_44_9621364')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T00_01_44_9629174')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T00_01_44_9629174')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T01_01_44_9298154')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T01_01_44_9298154')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T02_01_44_8898714')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T02_01_44_8898714')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T03_01_44_8757869')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T03_01_44_8757869')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T04_01_44_9592986')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T04_01_44_9592986')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T05_01_44_8450402')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T05_01_44_8450402')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T06_01_44_8056459')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T06_01_44_8056459')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T07_01_44_7942242')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T07_01_44_7942242')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T08_01_44_8478555')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T08_01_44_8478555')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T09_01_44_7887369')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T09_01_44_7887369')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T10_01_44_7593682')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T10_01_44_7593682')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T11_01_44_7465941')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T11_01_44_7465941')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T12_01_44_7440076')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T12_01_44_7440076')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T13_01_44_7392680')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T13_01_44_7392680')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T14_01_44_7049969')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T14_01_44_7049969')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T15_01_44_6878225')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T15_01_44_6878225')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T16_01_44_6487617')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T16_01_44_6487617')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T17_01_44_6018132')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T17_01_44_6018132')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T18_01_44_6187722')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T18_01_44_6187722')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T19_01_44_6304044')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T19_01_44_6304044')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T20_01_44_5780681')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T20_01_44_5780681')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T21_01_44_5276850')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T21_01_44_5276850')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T22_01_44_5517493')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T22_01_44_5517493')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-29T23_01_44_6156093')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-29T23_01_44_6156093')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T00_01_44_5433179')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T00_01_44_5433179')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T01_01_44_5710371')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T01_01_44_5710371')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T02_01_44_5279846')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T02_01_44_5279846')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T03_01_44_5909048')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T03_01_44_5909048')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T04_01_44_4433185')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T04_01_44_4433185')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T05_01_44_4208347')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T05_01_44_4208347')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T06_01_44_4771371')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T06_01_44_4771371')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T07_01_44_3942737')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T07_01_44_3942737')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T08_01_44_4332434')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T08_01_44_4332434')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T09_01_44_3624370')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T09_01_44_3624370')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T10_01_44_4347458')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T10_01_44_4347458')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T11_01_44_3813008')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T11_01_44_3813008')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T12_01_44_3534260')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T12_01_44_3534260')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T13_01_44_2872542')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T13_01_44_2872542')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T14_01_44_2701229')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T14_01_44_2701229')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T15_01_44_2762781')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T15_01_44_2762781')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T16_01_44_2253850')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T16_01_44_2253850')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T17_01_44_2438488')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T17_01_44_2438488')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T18_01_44_2152320')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T18_01_44_2152320')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T19_01_44_2046178')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T19_01_44_2046178')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T20_01_44_2010980')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T20_01_44_2010980')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T21_01_44_1395839')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T21_01_44_1395839')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T22_01_44_1254428')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T22_01_44_1254428')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-30T23_01_44_2470558')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-30T23_01_44_2470558')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-31T00_01_44_0988483')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-31T00_01_44_0988483')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-31T01_01_44_0870313')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-31T01_01_44_0870313')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-31T02_01_44_0504968')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-31T02_01_44_0504968')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-31T03_01_44_0449909')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-31T03_01_44_0449909')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-31T04_01_44_0832586')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-31T04_01_44_0832586')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-31T05_01_44_0080340')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-31T05_01_44_0080340')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-31T06_01_44_0090995')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-31T06_01_44_0090995')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/2023-07-31T07_01_44_0038041')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/2023-07-31T07_01_44_0038041')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_dev_name'), '/42f36788-3f79-4f07-aa30-ac3aaec28356_snet-odms-integration-dev')]", + "properties": { + "isSwift": true, + "vnetResourceId": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-integration-dev')]" + }, + "type": "Microsoft.Web/sites/virtualNetworkConnections" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_test_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_test_name'), '/42f36788-3f79-4f07-aa30-ac3aaec28356_snet-odms-integration-dev')]", + "properties": { + "isSwift": true, + "vnetResourceId": "[concat(parameters('virtualnetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-integration-dev')]" + }, + "type": "Microsoft.Web/sites/virtualNetworkConnections" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/staticSites', parameters('staticSites_staapp_odms_dictation_dev_name'))]" + ], + "location": "East Asia", + "name": "[concat(parameters('staticSites_staapp_odms_dictation_dev_name'), '/pep-odms-staapp-dev-95e5-5a9e9f98-650d-447c-95ac-80c6b705d8a1')]", + "properties": { + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "status": "Approved" + } + }, + "type": "Microsoft.Web/staticSites/privateEndpointConnections" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saomdsdevelop_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdevelop_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdevelop_name'), '/default/account')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saomdsdictationdevus_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdictationdevus_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdictationdevus_name'), '/default/account-1')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saomdsdictationdevus_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdictationdevus_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdictationdevus_name'), '/default/account-2')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saomdsdictationdevus_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saomdsdictationdevus_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saomdsdictationdevus_name'), '/default/test-company-1')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + } + ], + "variables": {} +} diff --git a/configurations/azure/dev-azureADB2C-rg.json b/configurations/azure/dev-azureADB2C-rg.json new file mode 100644 index 0000000..c6aa90c --- /dev/null +++ b/configurations/azure/dev-azureADB2C-rg.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "b2cDirectories_adb2codmsdev_onmicrosoft_com_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2023-01-18-preview", + "location": "Asia Pacific", + "name": "[parameters('b2cDirectories_adb2codmsdev_onmicrosoft_com_name')]", + "properties": {}, + "sku": { + "name": "PremiumP1", + "tier": "A0" + }, + "type": "Microsoft.AzureActiveDirectory/b2cDirectories" + } + ], + "variables": {} +} diff --git a/configurations/azure/dev-database-rg.json b/configurations/azure/dev-database-rg.json new file mode 100644 index 0000000..b381d08 --- /dev/null +++ b/configurations/azure/dev-database-rg.json @@ -0,0 +1,5930 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "flexibleServers_mysql_odms_db_dev_name": { + "type": "String" + }, + "privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_externalid": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_dev_externalid": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2022-09-30-preview", + "location": "Japan East", + "name": "[parameters('flexibleServers_mysql_odms_db_dev_name')]", + "properties": { + "administratorLogin": "odmsAdmin", + "availabilityZone": "2", + "backup": { + "backupRetentionDays": 7, + "geoRedundantBackup": "Disabled" + }, + "highAvailability": { + "mode": "Disabled" + }, + "maintenanceWindow": { + "customWindow": "Disabled", + "dayOfWeek": 0, + "startHour": 0, + "startMinute": 0 + }, + "network": { + "delegatedSubnetResourceId": "[concat(parameters('virtualNetworks_vnet_odms_network_dev_externalid'), '/subnets/snet-odms-private-dev')]", + "privateDnsZoneResourceId": "[parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_externalid')]", + "publicNetworkAccess": "Disabled" + }, + "replicationRole": "None", + "storage": { + "autoGrow": "Enabled", + "autoIoScaling": "Disabled", + "iops": 360, + "logOnDisk": "Disabled", + "storageSizeGB": 20 + }, + "version": "8.0.21" + }, + "sku": { + "name": "Standard_B1ms", + "tier": "Burstable" + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.DBforMySQL/flexibleServers" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/daily-20230724t162400-6cc69487-0eb7-4530-8f35-d1ce130a7df7')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/daily-20230725t162400-6cc69487-0eb7-4530-8f35-d1ce130a7df7')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/daily-20230726t165737-6cc69487-0eb7-4530-8f35-d1ce130a7df7')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/daily-20230727t043400-6cc69487-0eb7-4530-8f35-d1ce130a7df7')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/daily-20230728t045715-6cc69487-0eb7-4530-8f35-d1ce130a7df7')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/daily-20230728t074300-6cc69487-0eb7-4530-8f35-d1ce130a7df7')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/daily-20230729t074300-6cc69487-0eb7-4530-8f35-d1ce130a7df7')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/daily-20230730t074300-6cc69487-0eb7-4530-8f35-d1ce130a7df7')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/aad_auth_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/activate_all_roles_on_login')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_address')]", + "properties": { + "currentValue": "127.0.0.1", + "source": "system-default", + "value": "127.0.0.1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_port')]", + "properties": { + "currentValue": "33062", + "source": "system-default", + "value": "33062" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_ssl_ca')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_ssl_capath')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_ssl_cert')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_ssl_cipher')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_ssl_crl')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_ssl_crlpath')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_ssl_key')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_tls_ciphersuites')]", + "properties": { + "currentValue": "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256", + "source": "system-default", + "value": "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/admin_tls_version')]", + "properties": { + "currentValue": "TLSv1.2", + "source": "system-default", + "value": "TLSv1.2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/archive')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/audit_log_enabled')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/audit_log_events')]", + "properties": { + "currentValue": "CONNECTION", + "source": "system-default", + "value": "CONNECTION" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/audit_log_exclude_users')]", + "properties": { + "currentValue": "azure_superuser", + "source": "system-default", + "value": "azure_superuser" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/audit_log_include_users')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/audit_slow_log_enabled')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/auto_generate_certs')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/auto_increment_increment')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/auto_increment_offset')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/autocommit')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/automatic_sp_privileges')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/avoid_temporal_upgrade')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/azure_replication_repair_time')]", + "properties": { + "currentValue": "60", + "source": "system-default", + "value": "60" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/back_log')]", + "properties": { + "currentValue": "271", + "source": "system-default", + "value": "271" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/big_tables')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_cache_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_checksum')]", + "properties": { + "currentValue": "CRC32", + "source": "system-default", + "value": "CRC32" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_direct_non_transactional_updates')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_encryption')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_error_action')]", + "properties": { + "currentValue": "ABORT_SERVER", + "source": "system-default", + "value": "ABORT_SERVER" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_expire_logs_seconds')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_format')]", + "properties": { + "currentValue": "ROW", + "source": "system-default", + "value": "ROW" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_group_commit_sync_delay')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_group_commit_sync_no_delay_count')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_gtid_simple_recovery')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_order_commits')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_rotate_encryption_master_key_at_startup')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_row_event_max_size')]", + "properties": { + "currentValue": "1048576", + "source": "system-default", + "value": "1048576" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_row_image')]", + "properties": { + "currentValue": "minimal", + "source": "system-default", + "value": "minimal" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_row_metadata')]", + "properties": { + "currentValue": "MINIMAL", + "source": "system-default", + "value": "MINIMAL" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_row_value_options')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_rows_query_log_events')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_stmt_cache_size')]", + "properties": { + "currentValue": "32768", + "source": "system-default", + "value": "32768" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_transaction_dependency_history_size')]", + "properties": { + "currentValue": "2000", + "source": "system-default", + "value": "2000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/binlog_transaction_dependency_tracking')]", + "properties": { + "currentValue": "WRITESET", + "source": "system-default", + "value": "WRITESET" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/blackhole')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/block_encryption_mode')]", + "properties": { + "currentValue": "aes-128-ecb", + "source": "system-default", + "value": "aes-128-ecb" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/bulk_insert_buffer_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/caching_sha2_password_auto_generate_rsa_keys')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/caching_sha2_password_private_key_path')]", + "properties": { + "currentValue": "private_key.pem", + "source": "system-default", + "value": "private_key.pem" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/caching_sha2_password_public_key_path')]", + "properties": { + "currentValue": "public_key.pem", + "source": "system-default", + "value": "public_key.pem" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/character_set_filesystem')]", + "properties": { + "currentValue": "binary", + "source": "system-default", + "value": "binary" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/character_set_server')]", + "properties": { + "currentValue": "utf8mb4", + "source": "system-default", + "value": "utf8mb4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/check_proxy_users')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/collation_server')]", + "properties": { + "currentValue": "utf8mb4_0900_ai_ci", + "source": "system-default", + "value": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/completion_type')]", + "properties": { + "currentValue": "NO_CHAIN", + "source": "system-default", + "value": "NO_CHAIN" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/concurrent_insert')]", + "properties": { + "currentValue": "AUTO", + "source": "system-default", + "value": "AUTO" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/connect_timeout')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/create_admin_listener_thread')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/cte_max_recursion_depth')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/default_authentication_plugin')]", + "properties": { + "currentValue": "mysql_native_password", + "source": "system-default", + "value": "mysql_native_password" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/default_password_lifetime')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/default_storage_engine')]", + "properties": { + "currentValue": "InnoDB", + "source": "system-default", + "value": "InnoDB" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/default_table_encryption')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/default_tmp_storage_engine')]", + "properties": { + "currentValue": "InnoDB", + "source": "system-default", + "value": "InnoDB" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/default_week_format')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/delay_key_write')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/delayed_insert_limit')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/delayed_insert_timeout')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/delayed_queue_size')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/disabled_storage_engines')]", + "properties": { + "currentValue": "MyISAM,MRG_MyISAM,BLACKHOLE,FEDEATED,ARCHIVE", + "source": "system-default", + "value": "MyISAM,MRG_MyISAM,BLACKHOLE,FEDEATED,ARCHIVE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/disconnect_on_expired_password')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/div_precision_increment')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/end_markers_in_json')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/enforce_gtid_consistency')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/eq_range_index_dive_limit')]", + "properties": { + "currentValue": "200", + "source": "system-default", + "value": "200" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/event_scheduler')]", + "properties": { + "currentValue": "OFF", + "source": "user-override", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/expire_logs_days')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/explicit_defaults_for_timestamp')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/flush')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/flush_time')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/ft_boolean_syntax')]", + "properties": { + "currentValue": "+ -><()~*:\"\"&|", + "source": "system-default", + "value": "+ -><()~*:\"\"&|" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/ft_query_expansion_limit')]", + "properties": { + "currentValue": "20", + "source": "system-default", + "value": "20" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/general_log')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/general_log_file')]", + "properties": { + "currentValue": "/app/work/serverlogs/mysql-general-mysql-odms-db-dev-2023041909.log", + "source": "user-override", + "value": "/app/work/serverlogs/mysql-general-mysql-odms-db-dev-2023041909.log" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/generated_random_password_length')]", + "properties": { + "currentValue": "20", + "source": "system-default", + "value": "20" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/group_concat_max_len')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/group_replication_consistency')]", + "properties": { + "currentValue": "EVENTUAL", + "source": "system-default", + "value": "EVENTUAL" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/gtid_executed_compression_period')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/gtid_mode')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/histogram_generation_max_mem_size')]", + "properties": { + "currentValue": "20000000", + "source": "system-default", + "value": "20000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/host_cache_size')]", + "properties": { + "currentValue": "279", + "source": "system-default", + "value": "279" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/information_schema_stats_expiry')]", + "properties": { + "currentValue": "86400", + "source": "system-default", + "value": "86400" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/init_connect')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_adaptive_flushing')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_adaptive_flushing_lwm')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_adaptive_hash_index')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_adaptive_hash_index_parts')]", + "properties": { + "currentValue": "8", + "source": "system-default", + "value": "8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_adaptive_max_sleep_delay')]", + "properties": { + "currentValue": "150000", + "source": "system-default", + "value": "150000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_autoextend_increment')]", + "properties": { + "currentValue": "64", + "source": "system-default", + "value": "64" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_autoinc_lock_mode')]", + "properties": { + "currentValue": "2", + "source": "system-default", + "value": "2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_chunk_size')]", + "properties": { + "currentValue": "134217728", + "source": "system-default", + "value": "134217728" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_dump_at_shutdown')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_dump_now')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_dump_pct')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_filename')]", + "properties": { + "currentValue": "ib_buffer_pool", + "source": "system-default", + "value": "ib_buffer_pool" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_in_core_file')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_instances')]", + "properties": { + "currentValue": "8", + "source": "system-default", + "value": "8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_load_abort')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_load_at_startup')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_load_now')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_buffer_pool_size')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_change_buffer_max_size')]", + "properties": { + "currentValue": "25", + "source": "system-default", + "value": "25" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_change_buffering')]", + "properties": { + "currentValue": "all", + "source": "system-default", + "value": "all" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_checksum_algorithm')]", + "properties": { + "currentValue": "crc32", + "source": "system-default", + "value": "crc32" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_cmp_per_index_enabled')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_commit_concurrency')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_compression_failure_threshold_pct')]", + "properties": { + "currentValue": "5", + "source": "system-default", + "value": "5" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_compression_level')]", + "properties": { + "currentValue": "6", + "source": "system-default", + "value": "6" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_compression_pad_pct_max')]", + "properties": { + "currentValue": "50", + "source": "system-default", + "value": "50" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_concurrency_tickets')]", + "properties": { + "currentValue": "5000", + "source": "system-default", + "value": "5000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_data_file_path')]", + "properties": { + "currentValue": "ibdata1:12M:autoextend", + "source": "system-default", + "value": "ibdata1:12M:autoextend" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_data_home_dir')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_deadlock_detect')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_dedicated_server')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_default_row_format')]", + "properties": { + "currentValue": "DYNAMIC", + "source": "system-default", + "value": "DYNAMIC" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_directories')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_disable_sort_file_cache')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_doublewrite')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_doublewrite_batch_size')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_doublewrite_dir')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_doublewrite_files')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_doublewrite_pages')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_fast_shutdown')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_fatal_semaphore_wait_threshold')]", + "properties": { + "currentValue": "7201", + "source": "system-default", + "value": "7201" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_file_per_table')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_fill_factor')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_flush_log_at_timeout')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_flush_log_at_trx_commit')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_flush_method')]", + "properties": { + "currentValue": "fsync", + "source": "system-default", + "value": "fsync" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_flush_neighbors')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_flush_sync')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_flushing_avg_loops')]", + "properties": { + "currentValue": "30", + "source": "system-default", + "value": "30" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_force_load_corrupted')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_force_recovery')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_fsync_threshold')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_cache_size')]", + "properties": { + "currentValue": "8000000", + "source": "system-default", + "value": "8000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_enable_diag_print')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_enable_stopword')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_max_token_size')]", + "properties": { + "currentValue": "84", + "source": "system-default", + "value": "84" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_min_token_size')]", + "properties": { + "currentValue": "3", + "source": "system-default", + "value": "3" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_num_word_optimize')]", + "properties": { + "currentValue": "2000", + "source": "system-default", + "value": "2000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_result_cache_limit')]", + "properties": { + "currentValue": "2000000000", + "source": "system-default", + "value": "2000000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_server_stopword_table')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_sort_pll_degree')]", + "properties": { + "currentValue": "2", + "source": "system-default", + "value": "2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_total_cache_size')]", + "properties": { + "currentValue": "640000000", + "source": "system-default", + "value": "640000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_ft_user_stopword_table')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_idle_flush_pct')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_io_capacity')]", + "properties": { + "currentValue": "200", + "source": "system-default", + "value": "200" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_io_capacity_max')]", + "properties": { + "currentValue": "2000", + "source": "system-default", + "value": "2000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_lock_wait_timeout')]", + "properties": { + "currentValue": "50", + "source": "system-default", + "value": "50" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_log_buffer_size')]", + "properties": { + "currentValue": "16777216", + "source": "system-default", + "value": "16777216" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_log_checksums')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_log_compressed_pages')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_log_spin_cpu_abs_lwm')]", + "properties": { + "currentValue": "80", + "source": "system-default", + "value": "80" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_log_spin_cpu_pct_hwm')]", + "properties": { + "currentValue": "50", + "source": "system-default", + "value": "50" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_log_wait_for_flush_spin_hwm')]", + "properties": { + "currentValue": "400", + "source": "system-default", + "value": "400" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_log_write_ahead_size')]", + "properties": { + "currentValue": "8192", + "source": "system-default", + "value": "8192" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_lru_scan_depth')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_max_dirty_pages_pct')]", + "properties": { + "currentValue": "90", + "source": "system-default", + "value": "90" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_max_dirty_pages_pct_lwm')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_max_purge_lag')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_max_purge_lag_delay')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_max_undo_log_size')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_monitor_disable')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_monitor_enable')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_monitor_reset')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_monitor_reset_all')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_numa_interleave')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_old_blocks_pct')]", + "properties": { + "currentValue": "37", + "source": "system-default", + "value": "37" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_old_blocks_time')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_online_alter_log_max_size')]", + "properties": { + "currentValue": "134217728", + "source": "system-default", + "value": "134217728" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_open_files')]", + "properties": { + "currentValue": "-1", + "source": "system-default", + "value": "-1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_optimize_fulltext_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_page_cleaners')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_page_size')]", + "properties": { + "currentValue": "16384", + "source": "system-default", + "value": "16384" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_parallel_read_threads')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_print_all_deadlocks')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_print_ddl_logs')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_purge_batch_size')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_purge_rseg_truncate_frequency')]", + "properties": { + "currentValue": "128", + "source": "system-default", + "value": "128" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_purge_threads')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_random_read_ahead')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_read_ahead_threshold')]", + "properties": { + "currentValue": "56", + "source": "system-default", + "value": "56" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_read_io_threads')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_read_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_redo_log_archive_dirs')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_redo_log_capacity')]", + "properties": { + "currentValue": "536870912", + "source": "system-default", + "value": "536870912" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_redo_log_encrypt')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_replication_delay')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_rollback_on_timeout')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_rollback_segments')]", + "properties": { + "currentValue": "128", + "source": "system-default", + "value": "128" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_sort_buffer_size')]", + "properties": { + "currentValue": "1048576", + "source": "system-default", + "value": "1048576" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_spin_wait_delay')]", + "properties": { + "currentValue": "6", + "source": "system-default", + "value": "6" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_spin_wait_pause_multiplier')]", + "properties": { + "currentValue": "50", + "source": "system-default", + "value": "50" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_stats_auto_recalc')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_stats_include_delete_marked')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_stats_method')]", + "properties": { + "currentValue": "nulls_equal", + "source": "system-default", + "value": "nulls_equal" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_stats_on_metadata')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_stats_persistent')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_stats_persistent_sample_pages')]", + "properties": { + "currentValue": "20", + "source": "system-default", + "value": "20" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_stats_transient_sample_pages')]", + "properties": { + "currentValue": "8", + "source": "system-default", + "value": "8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_status_output')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_status_output_locks')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_strict_mode')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_sync_array_size')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_sync_spin_loops')]", + "properties": { + "currentValue": "30", + "source": "system-default", + "value": "30" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_table_locks')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_temp_data_file_path')]", + "properties": { + "currentValue": "ibtmp1:12M:autoextend", + "source": "system-default", + "value": "ibtmp1:12M:autoextend" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_temp_tablespaces_dir')]", + "properties": { + "currentValue": "/app/work/temp", + "source": "system-default", + "value": "/app/work/temp" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_thread_concurrency')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_thread_sleep_delay')]", + "properties": { + "currentValue": "10000", + "source": "system-default", + "value": "10000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_tmpdir')]", + "properties": { + "currentValue": "/app/work/temp", + "source": "system-default", + "value": "/app/work/temp" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_undo_directory')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_undo_log_encrypt')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_undo_log_truncate')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_use_native_aio')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_validate_tablespace_paths')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/innodb_write_io_threads')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/interactive_timeout')]", + "properties": { + "currentValue": "28800", + "source": "system-default", + "value": "28800" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/internal_tmp_mem_storage_engine')]", + "properties": { + "currentValue": "TempTable", + "source": "system-default", + "value": "TempTable" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/join_buffer_size')]", + "properties": { + "currentValue": "262144", + "source": "system-default", + "value": "262144" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/keep_files_on_create')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/key_buffer_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/key_cache_age_threshold')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/key_cache_block_size')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/key_cache_division_limit')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/large_pages')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/lc_time_names')]", + "properties": { + "currentValue": "en_US", + "source": "system-default", + "value": "en_US" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/local_infile')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/lock_wait_timeout')]", + "properties": { + "currentValue": "31536000", + "source": "system-default", + "value": "31536000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_bin')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_bin_trust_function_creators')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_bin_use_v1_row_events')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_error_services')]", + "properties": { + "currentValue": "log_filter_internal; log_sink_internal", + "source": "system-default", + "value": "log_filter_internal; log_sink_internal" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_error_suppression_list')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_error_verbosity')]", + "properties": { + "currentValue": "3", + "source": "system-default", + "value": "3" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_output')]", + "properties": { + "currentValue": "NONE", + "source": "system-default", + "value": "NONE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_queries_not_using_indexes')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_raw')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_slave_updates')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_slow_admin_statements')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_slow_extra')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_slow_slave_statements')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_statements_unsafe_for_binlog')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_throttle_queries_not_using_indexes')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/log_timestamps')]", + "properties": { + "currentValue": "UTC", + "source": "system-default", + "value": "UTC" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/long_query_time')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/low_priority_updates')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/lower_case_table_names')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/mandatory_roles')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/master_info_repository')]", + "properties": { + "currentValue": "TABLE", + "source": "system-default", + "value": "TABLE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/master_verify_checksum')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_allowed_packet')]", + "properties": { + "currentValue": "536870912", + "source": "system-default", + "value": "536870912" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_binlog_cache_size')]", + "properties": { + "currentValue": "18446744073709547520", + "source": "system-default", + "value": "18446744073709547520" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_binlog_size')]", + "properties": { + "currentValue": "104857600", + "source": "system-default", + "value": "104857600" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_binlog_stmt_cache_size')]", + "properties": { + "currentValue": "18446744073709547520", + "source": "system-default", + "value": "18446744073709547520" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_connect_errors')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_connections')]", + "properties": { + "currentValue": "171", + "source": "system-default", + "value": "171" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_delayed_threads')]", + "properties": { + "currentValue": "20", + "source": "system-default", + "value": "20" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_digest_length')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_error_count')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_execution_time')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_heap_table_size')]", + "properties": { + "currentValue": "16777216", + "source": "system-default", + "value": "16777216" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_join_size')]", + "properties": { + "currentValue": "18446744073709551615", + "source": "system-default", + "value": "18446744073709551615" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_length_for_sort_data')]", + "properties": { + "currentValue": "4096", + "source": "system-default", + "value": "4096" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_points_in_geometry')]", + "properties": { + "currentValue": "65536", + "source": "system-default", + "value": "65536" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_prepared_stmt_count')]", + "properties": { + "currentValue": "16382", + "source": "system-default", + "value": "16382" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_relay_log_size')]", + "properties": { + "currentValue": "104857600", + "source": "system-default", + "value": "104857600" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_seeks_for_key')]", + "properties": { + "currentValue": "18446744073709551615", + "source": "system-default", + "value": "18446744073709551615" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_sort_length')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_sp_recursion_depth')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_user_connections')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/max_write_lock_count')]", + "properties": { + "currentValue": "18446744073709551615", + "source": "system-default", + "value": "18446744073709551615" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/min_examined_row_limit')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/myisam_sort_buffer_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/mysql_native_password_proxy_users')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/mysqlx')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/net_buffer_length')]", + "properties": { + "currentValue": "16384", + "source": "system-default", + "value": "16384" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/net_read_timeout')]", + "properties": { + "currentValue": "120", + "source": "system-default", + "value": "120" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/net_retry_count')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/net_write_timeout')]", + "properties": { + "currentValue": "240", + "source": "system-default", + "value": "240" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/ngram_token_size')]", + "properties": { + "currentValue": "2", + "source": "system-default", + "value": "2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/offline_mode')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/open_files_limit')]", + "properties": { + "currentValue": "5000", + "source": "system-default", + "value": "5000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/optimizer_prune_level')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/optimizer_search_depth')]", + "properties": { + "currentValue": "62", + "source": "system-default", + "value": "62" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/optimizer_switch')]", + "properties": { + "currentValue": "default", + "source": "system-default", + "value": "default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/optimizer_trace')]", + "properties": { + "currentValue": "enabled=off,one_line=off", + "source": "system-default", + "value": "enabled=off,one_line=off" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/optimizer_trace_features')]", + "properties": { + "currentValue": "greedy_search=on,range_optimizer=on,dynamic_range=on,repeated_subselect=on", + "source": "system-default", + "value": "greedy_search=on,range_optimizer=on,dynamic_range=on,repeated_subselect=on" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/optimizer_trace_limit')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/optimizer_trace_max_mem_size')]", + "properties": { + "currentValue": "1048576", + "source": "system-default", + "value": "1048576" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/optimizer_trace_offset')]", + "properties": { + "currentValue": "-1", + "source": "system-default", + "value": "-1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/parser_max_mem_size')]", + "properties": { + "currentValue": "18446744073709551615", + "source": "system-default", + "value": "18446744073709551615" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/partial_revokes')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/password_history')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/password_require_current')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/password_reuse_interval')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_stages_current')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_stages_history')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_stages_history_long')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_statements_cpu')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_statements_current')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_statements_history')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_statements_history_long')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_transactions_current')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_transactions_history')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_transactions_history_long')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_waits_current')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_waits_history')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_events_waits_history_long')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_global_instrumentation')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_statements_digest')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_consumer_thread_instrumentation')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_instrument')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_cond_classes')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_digest_length')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_file_classes')]", + "properties": { + "currentValue": "80", + "source": "system-default", + "value": "80" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_file_handles')]", + "properties": { + "currentValue": "32768", + "source": "system-default", + "value": "32768" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_memory_classes')]", + "properties": { + "currentValue": "450", + "source": "system-default", + "value": "450" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_mutex_classes')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_rwlock_classes')]", + "properties": { + "currentValue": "60", + "source": "system-default", + "value": "60" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_socket_classes')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_sql_text_length')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_stage_classes')]", + "properties": { + "currentValue": "175", + "source": "system-default", + "value": "175" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_statement_stack')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema_max_thread_classes')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/persist_only_admin_x509_subject')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/persisted_globals_load')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/plugin_load')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/preload_buffer_size')]", + "properties": { + "currentValue": "32768", + "source": "system-default", + "value": "32768" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/print_identified_with_as_hex')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/profiling_history_size')]", + "properties": { + "currentValue": "15", + "source": "system-default", + "value": "15" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/protocol_compression_algorithms')]", + "properties": { + "currentValue": "zlib,zstd,uncompressed", + "source": "system-default", + "value": "zlib,zstd,uncompressed" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/query_alloc_block_size')]", + "properties": { + "currentValue": "8192", + "source": "system-default", + "value": "8192" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/query_prealloc_size')]", + "properties": { + "currentValue": "8192", + "source": "system-default", + "value": "8192" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/range_alloc_block_size')]", + "properties": { + "currentValue": "4096", + "source": "system-default", + "value": "4096" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/range_optimizer_max_mem_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/read_buffer_size')]", + "properties": { + "currentValue": "131072", + "source": "system-default", + "value": "131072" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/read_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/read_rnd_buffer_size')]", + "properties": { + "currentValue": "262144", + "source": "system-default", + "value": "262144" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/regexp_stack_limit')]", + "properties": { + "currentValue": "8000000", + "source": "system-default", + "value": "8000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/regexp_time_limit')]", + "properties": { + "currentValue": "32", + "source": "system-default", + "value": "32" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/relay_log')]", + "properties": { + "currentValue": "/app/work/relaylogs/relay_bin", + "source": "system-default", + "value": "/app/work/relaylogs/relay_bin" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/relay_log_index')]", + "properties": { + "currentValue": "/app/work/relaylogs/relay_bin.index", + "source": "system-default", + "value": "/app/work/relaylogs/relay_bin.index" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/relay_log_info_repository')]", + "properties": { + "currentValue": "TABLE", + "source": "system-default", + "value": "TABLE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/relay_log_purge')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/relay_log_recovery')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/relay_log_space_limit')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/replicate_wild_ignore_table')]", + "properties": { + "currentValue": "mysql.%,information_schema.%,performance_schema.%,sys.%", + "source": "system-default", + "value": "mysql.%,information_schema.%,performance_schema.%,sys.%" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/require_secure_transport')]", + "properties": { + "currentValue": "OFF", + "source": "user-override", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/rpl_read_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/rpl_stop_slave_timeout')]", + "properties": { + "currentValue": "31536000", + "source": "system-default", + "value": "31536000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/schema_definition_cache')]", + "properties": { + "currentValue": "256", + "source": "system-default", + "value": "256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/secure_file_priv')]", + "properties": { + "currentValue": "NULL", + "source": "system-default", + "value": "NULL" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/server_id')]", + "properties": { + "currentValue": "1269492853", + "source": "user-override", + "value": "1269492853" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/session_track_gtids')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/session_track_schema')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/session_track_state_change')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/session_track_system_variables')]", + "properties": { + "currentValue": "time_zone, autocommit, character_set_client, character_set_results, character_set_connection", + "source": "system-default", + "value": "time_zone, autocommit, character_set_client, character_set_results, character_set_connection" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/session_track_transaction_info')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sha256_password_auto_generate_rsa_keys')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sha256_password_private_key_path')]", + "properties": { + "currentValue": "private_key.pem", + "source": "system-default", + "value": "private_key.pem" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sha256_password_proxy_users')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sha256_password_public_key_path')]", + "properties": { + "currentValue": "public_key.pem", + "source": "system-default", + "value": "public_key.pem" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/show_old_temporals')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/skip_external_locking')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/skip_name_resolve')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/skip_show_database')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/skip-slave-start')]", + "properties": { + "currentValue": "FALSE", + "source": "system-default", + "value": "FALSE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_allow_batching')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_checkpoint_group')]", + "properties": { + "currentValue": "512", + "source": "system-default", + "value": "512" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_checkpoint_period')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_compressed_protocol')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_exec_mode')]", + "properties": { + "currentValue": "STRICT", + "source": "system-default", + "value": "STRICT" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_load_tmpdir')]", + "properties": { + "currentValue": "/app/work/temp", + "source": "system-default", + "value": "/app/work/temp" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_max_allowed_packet')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_net_timeout')]", + "properties": { + "currentValue": "60", + "source": "system-default", + "value": "60" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_parallel_type')]", + "properties": { + "currentValue": "LOGICAL_CLOCK", + "source": "system-default", + "value": "LOGICAL_CLOCK" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_parallel_workers')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_pending_jobs_size_max')]", + "properties": { + "currentValue": "16777216", + "source": "system-default", + "value": "16777216" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_preserve_commit_order')]", + "properties": { + "currentValue": "ON", + "source": "user-override", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_rows_search_algorithms')]", + "properties": { + "currentValue": "TABLE_SCAN,INDEX_SCAN", + "source": "system-default", + "value": "TABLE_SCAN,INDEX_SCAN" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_skip_errors')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_sql_verify_checksum')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_transaction_retries')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slave_type_conversions')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slow_launch_time')]", + "properties": { + "currentValue": "2", + "source": "system-default", + "value": "2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slow_query_log')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/slow_query_log_file')]", + "properties": { + "currentValue": "/app/serverlogs/slowlogs/mysql-slow-mysql-odms-db-dev-2023073009.log", + "source": "user-override", + "value": "/app/serverlogs/slowlogs/mysql-slow-mysql-odms-db-dev-2023073009.log" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sort_buffer_size')]", + "properties": { + "currentValue": "524288", + "source": "system-default", + "value": "524288" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sql_mode')]", + "properties": { + "currentValue": "ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO", + "source": "user-override", + "value": "ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sql_require_primary_key')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/ssl_cipher')]", + "properties": { + "currentValue": "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-CCM:DHE-RSA-AES256-CCM:DHE-RSA-AES128-CCM8:DHE-RSA-AES256-CCM8", + "source": "system-default", + "value": "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-CCM:DHE-RSA-AES256-CCM:DHE-RSA-AES128-CCM8:DHE-RSA-AES256-CCM8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/stored_program_cache')]", + "properties": { + "currentValue": "256", + "source": "system-default", + "value": "256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/stored_program_definition_cache')]", + "properties": { + "currentValue": "256", + "source": "system-default", + "value": "256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/super_read_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sync_binlog')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sync_master_info')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sync_relay_log')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sync_relay_log_info')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/table_definition_cache')]", + "properties": { + "currentValue": "600", + "source": "system-default", + "value": "600" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/table_encryption_privilege_check')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/table_open_cache')]", + "properties": { + "currentValue": "600", + "source": "system-default", + "value": "600" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/table_open_cache_instances')]", + "properties": { + "currentValue": "16", + "source": "system-default", + "value": "16" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/tablespace_definition_cache')]", + "properties": { + "currentValue": "256", + "source": "system-default", + "value": "256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/temptable_max_ram')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/temptable_use_mmap')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_cache_size')]", + "properties": { + "currentValue": "9", + "source": "system-default", + "value": "9" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_handling')]", + "properties": { + "currentValue": "one-thread-per-connection", + "source": "system-default", + "value": "one-thread-per-connection" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_pool_batch_max_time')]", + "properties": { + "currentValue": "30000", + "source": "system-default", + "value": "30000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_pool_batch_wait_timeout')]", + "properties": { + "currentValue": "10000", + "source": "system-default", + "value": "10000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_pool_idle_timeout')]", + "properties": { + "currentValue": "60", + "source": "system-default", + "value": "60" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_pool_new_conn_high_prio')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_pool_size')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_pool_stall_limit')]", + "properties": { + "currentValue": "500", + "source": "system-default", + "value": "500" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/thread_stack')]", + "properties": { + "currentValue": "286720", + "source": "system-default", + "value": "286720" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/time_zone')]", + "properties": { + "currentValue": "+00:00", + "source": "system-default", + "value": "+00:00" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/tls_ciphersuites')]", + "properties": { + "currentValue": "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256", + "source": "system-default", + "value": "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/tls_version')]", + "properties": { + "currentValue": "TLSv1.2", + "source": "system-default", + "value": "TLSv1.2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/tmp_table_size')]", + "properties": { + "currentValue": "16777216", + "source": "system-default", + "value": "16777216" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/tmpdir')]", + "properties": { + "currentValue": "/app/work/temp", + "source": "system-default", + "value": "/app/work/temp" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/transaction_alloc_block_size')]", + "properties": { + "currentValue": "8192", + "source": "system-default", + "value": "8192" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/transaction_isolation')]", + "properties": { + "currentValue": "REPEATABLE-READ", + "source": "system-default", + "value": "REPEATABLE-READ" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/transaction_prealloc_size')]", + "properties": { + "currentValue": "4096", + "source": "system-default", + "value": "4096" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/transaction_read_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/transaction_write_set_extraction')]", + "properties": { + "currentValue": "XXHASH64", + "source": "system-default", + "value": "XXHASH64" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/updatable_views_with_limit')]", + "properties": { + "currentValue": "YES", + "source": "system-default", + "value": "YES" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/validate_user_plugins')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/wait_timeout')]", + "properties": { + "currentValue": "28800", + "source": "system-default", + "value": "28800" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/windowing_use_high_precision')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/information_schema')]", + "properties": { + "charset": "utf8mb3", + "collation": "utf8mb3_general_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/mysql')]", + "properties": { + "charset": "utf8mb4", + "collation": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/odms')]", + "properties": { + "charset": "utf8mb4", + "collation": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/performance_schema')]", + "properties": { + "charset": "utf8mb4", + "collation": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/sys')]", + "properties": { + "charset": "utf8mb4", + "collation": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_dev_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_dev_name'), '/ClientIPAddress_2023-6-8_11-29-58')]", + "properties": { + "endIpAddress": "60.65.231.128", + "startIpAddress": "60.65.231.128" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/firewallRules" + } + ], + "variables": {} +} diff --git a/configurations/azure/dev-network-rg.json b/configurations/azure/dev-network-rg.json new file mode 100644 index 0000000..19cc407 --- /dev/null +++ b/configurations/azure/dev-network-rg.json @@ -0,0 +1,11388 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "ApplicationGatewayWebApplicationFirewallPolicies_waf_odms_agw_dev_name": { + "type": "String" + }, + "applicationGateways_agw_odms_webapp_dev_name": { + "type": "String" + }, + "networkInterfaces_pep_odms_app_dev_nic_6b27b52b_0703_4bfa_b69a_66b82ec6ca3e_name": { + "type": "String" + }, + "networkInterfaces_pep_odms_app_test_nic_e7e4687e_685e_4023_bbab_a16ccfe8822b_name": { + "type": "String" + }, + "networkInterfaces_pep_odms_staapp_dev_nic_a67c70a7_750f_47d4_9844_b82b66095ef1_name": { + "type": "String" + }, + "networkInterfaces_vnet_odms_network_test_nic_fc58cc80_a813_4513_b04f_e61cfaaf2132_name": { + "type": "String" + }, + "networkSecurityGroups_nsg_odms_private_dev_name": { + "type": "String" + }, + "networkSecurityGroups_nsg_odms_public_dev_name": { + "type": "String" + }, + "privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name": { + "type": "String" + }, + "privateDnsZones_privatelink_2_azurestaticapps_net_name": { + "type": "String" + }, + "privateDnsZones_privatelink_azurewebsites_net_name": { + "type": "String" + }, + "privateDnsZones_privatelink_redis_cache_windows_net_name": { + "type": "String" + }, + "privateEndpoints_pep_odms_app_dev_name": { + "type": "String" + }, + "privateEndpoints_pep_odms_app_test_name": { + "type": "String" + }, + "privateEndpoints_pep_odms_staapp_dev_name": { + "type": "String" + }, + "privateEndpoints_vnet_odms_network_test_name": { + "type": "String" + }, + "publicIPAddresses_pip_odms_webapp_dev_name": { + "type": "String" + }, + "sites_app_odms_dictation_dev_externalid": { + "type": "String" + }, + "sites_app_odms_dictation_test_externalid": { + "type": "String" + }, + "staticSites_staapp_odms_dictation_dev_externalid": { + "type": "String" + }, + "userAssignedIdentities_id_odms_agw_dev_name": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_dev_name": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_maintenance_externalid": { + "type": "String" + }, + "workspaces_log_odms_agw_dev_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2023-01-31", + "location": "japaneast", + "name": "[parameters('userAssignedIdentities_id_odms_agw_dev_name')]", + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.ManagedIdentity/userAssignedIdentities" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('ApplicationGatewayWebApplicationFirewallPolicies_waf_odms_agw_dev_name')]", + "properties": { + "customRules": [], + "managedRules": { + "exclusions": [ + { + "exclusionManagedRuleSets": [ + { + "ruleGroups": [ + { + "ruleGroupName": "REQUEST-942-APPLICATION-ATTACK-SQLI", + "rules": [ + { + "ruleId": "942430" + }, + { + "ruleId": "942100" + }, + { + "ruleId": "942110" + }, + { + "ruleId": "942120" + }, + { + "ruleId": "942130" + }, + { + "ruleId": "942140" + }, + { + "ruleId": "942150" + }, + { + "ruleId": "942160" + }, + { + "ruleId": "942170" + }, + { + "ruleId": "942180" + }, + { + "ruleId": "942190" + }, + { + "ruleId": "942200" + }, + { + "ruleId": "942210" + }, + { + "ruleId": "942220" + }, + { + "ruleId": "942230" + }, + { + "ruleId": "942240" + }, + { + "ruleId": "942250" + }, + { + "ruleId": "942251" + }, + { + "ruleId": "942260" + }, + { + "ruleId": "942270" + }, + { + "ruleId": "942280" + }, + { + "ruleId": "942290" + }, + { + "ruleId": "942300" + }, + { + "ruleId": "942310" + }, + { + "ruleId": "942320" + }, + { + "ruleId": "942330" + }, + { + "ruleId": "942340" + }, + { + "ruleId": "942350" + }, + { + "ruleId": "942360" + }, + { + "ruleId": "942361" + }, + { + "ruleId": "942370" + }, + { + "ruleId": "942380" + }, + { + "ruleId": "942390" + }, + { + "ruleId": "942400" + }, + { + "ruleId": "942410" + }, + { + "ruleId": "942420" + }, + { + "ruleId": "942421" + }, + { + "ruleId": "942431" + }, + { + "ruleId": "942432" + }, + { + "ruleId": "942440" + }, + { + "ruleId": "942450" + }, + { + "ruleId": "942460" + }, + { + "ruleId": "942470" + }, + { + "ruleId": "942480" + }, + { + "ruleId": "942490" + }, + { + "ruleId": "942500" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ], + "matchVariable": "RequestArgNames", + "selector": "token", + "selectorMatchOperator": "Equals" + }, + { + "exclusionManagedRuleSets": [ + { + "ruleGroups": [ + { + "ruleGroupName": "REQUEST-942-APPLICATION-ATTACK-SQLI", + "rules": [ + { + "ruleId": "942430" + }, + { + "ruleId": "942100" + }, + { + "ruleId": "942110" + }, + { + "ruleId": "942120" + }, + { + "ruleId": "942130" + }, + { + "ruleId": "942140" + }, + { + "ruleId": "942150" + }, + { + "ruleId": "942160" + }, + { + "ruleId": "942170" + }, + { + "ruleId": "942180" + }, + { + "ruleId": "942190" + }, + { + "ruleId": "942200" + }, + { + "ruleId": "942210" + }, + { + "ruleId": "942220" + }, + { + "ruleId": "942230" + }, + { + "ruleId": "942240" + }, + { + "ruleId": "942250" + }, + { + "ruleId": "942251" + }, + { + "ruleId": "942260" + }, + { + "ruleId": "942270" + }, + { + "ruleId": "942280" + }, + { + "ruleId": "942290" + }, + { + "ruleId": "942300" + }, + { + "ruleId": "942310" + }, + { + "ruleId": "942320" + }, + { + "ruleId": "942330" + }, + { + "ruleId": "942340" + }, + { + "ruleId": "942350" + }, + { + "ruleId": "942360" + }, + { + "ruleId": "942361" + }, + { + "ruleId": "942370" + }, + { + "ruleId": "942380" + }, + { + "ruleId": "942390" + }, + { + "ruleId": "942400" + }, + { + "ruleId": "942410" + }, + { + "ruleId": "942420" + }, + { + "ruleId": "942421" + }, + { + "ruleId": "942431" + }, + { + "ruleId": "942432" + }, + { + "ruleId": "942440" + }, + { + "ruleId": "942450" + }, + { + "ruleId": "942460" + }, + { + "ruleId": "942470" + }, + { + "ruleId": "942480" + }, + { + "ruleId": "942490" + }, + { + "ruleId": "942500" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ], + "matchVariable": "RequestArgNames", + "selector": "verify", + "selectorMatchOperator": "Equals" + }, + { + "exclusionManagedRuleSets": [ + { + "ruleGroups": [ + { + "ruleGroupName": "REQUEST-931-APPLICATION-ATTACK-RFI", + "rules": [ + { + "ruleId": "931130" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ], + "matchVariable": "RequestArgNames", + "selector": "url", + "selectorMatchOperator": "Equals" + }, + { + "exclusionManagedRuleSets": [ + { + "ruleGroups": [ + { + "ruleGroupName": "REQUEST-942-APPLICATION-ATTACK-SQLI", + "rules": [ + { + "ruleId": "942440" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ], + "matchVariable": "RequestArgNames", + "selector": "idToken", + "selectorMatchOperator": "Equals" + } + ], + "managedRuleSets": [ + { + "ruleGroupOverrides": [ + { + "ruleGroupName": "General", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "200002", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "200003", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "200004", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-911-METHOD-ENFORCEMENT", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "911100", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-913-SCANNER-DETECTION", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "913100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "913101", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "913102", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "913110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "913120", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-920-PROTOCOL-ENFORCEMENT", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "920100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920121", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920160", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920170", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920171", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920180", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920190", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920200", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920201", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920202", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920210", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920220", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920230", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920240", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920250", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920260", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920270", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920271", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920272", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920273", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920274", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920280", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920290", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920300", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920310", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920311", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920320", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920330", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920340", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920341", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920350", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920420", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920430", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920440", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920450", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920460", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920470", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "920480", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-921-PROTOCOL-ATTACK", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "921110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "921120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "921130", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "921140", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "921150", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "921151", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "921160", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "921170", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "921180", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-930-APPLICATION-ATTACK-LFI", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "930100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "930110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "930120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "930130", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-931-APPLICATION-ATTACK-RFI", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "931100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "931110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "931120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "931130", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-932-APPLICATION-ATTACK-RCE", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "932100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932105", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932106", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932115", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932130", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932140", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932150", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932160", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932170", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932171", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932180", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "932190", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-933-APPLICATION-ATTACK-PHP", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "933100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933111", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933130", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933131", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933140", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933150", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933151", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933160", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933161", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933170", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933180", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933190", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933200", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "933210", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-941-APPLICATION-ATTACK-XSS", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "941100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941101", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941130", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941140", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941150", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941160", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941170", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941180", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941190", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941200", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941210", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941220", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941230", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941240", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941250", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941260", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941270", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941280", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941290", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941300", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941310", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941320", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941330", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941340", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941350", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "941360", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-942-APPLICATION-ATTACK-SQLI", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "942100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942130", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942140", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942150", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942160", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942170", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942180", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942190", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942200", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942210", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942220", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942230", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942240", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942250", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942251", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942260", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942270", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942280", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942290", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942300", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942310", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942320", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942330", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942340", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942350", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942360", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942361", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942370", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942380", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942390", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942400", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942410", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942420", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942421", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942430", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942431", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942432", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942450", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942460", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942470", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942480", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942490", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "942500", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "943100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "943110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "943120", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "REQUEST-944-APPLICATION-ATTACK-JAVA", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "944100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "944110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "944120", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "944130", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "944200", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "944210", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "944240", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "944250", + "state": "Enabled" + } + ] + }, + { + "ruleGroupName": "Known-CVEs", + "rules": [ + { + "action": "AnomalyScoring", + "ruleId": "800100", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "800110", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "800111", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "800112", + "state": "Enabled" + }, + { + "action": "AnomalyScoring", + "ruleId": "800113", + "state": "Enabled" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ] + }, + "policySettings": { + "fileUploadEnforcement": true, + "fileUploadLimitInMb": 100, + "maxRequestBodySizeInKb": 128, + "mode": "Prevention", + "requestBodyCheck": true, + "requestBodyEnforcement": true, + "requestBodyInspectLimitInKB": 128, + "state": "Enabled" + } + }, + "type": "Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('networkSecurityGroups_nsg_odms_private_dev_name')]", + "properties": { + "securityRules": [ + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_dev_name'), 'bastionVMInbound')]", + "name": "bastionVMInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1003, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_dev_name'), 'AllowDeployMigrationInbound')]", + "name": "AllowDeployMigrationInbound", + "properties": { + "access": "Allow", + "description": "deploỹ}CO[V", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1004, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.4.4/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_dev_name'), 'DenyAllInbound')]", + "name": "DenyAllInbound", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_dev_name'), 'AllowAppServiceInbound')]", + "name": "AllowAppServiceInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1001, + "protocol": "TCP", + "sourceAddressPrefix": "10.1.10.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + } + ] + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkSecurityGroups" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('networkSecurityGroups_nsg_odms_public_dev_name')]", + "properties": { + "securityRules": [ + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_public_dev_name'), 'AllowCidrBlockCustomAnyInbound')]", + "name": "AllowCidrBlockCustomAnyInbound", + "properties": { + "access": "Allow", + "description": "10.1.0.0/24iapplication gateway̏Tulbgj̎M", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 100, + "protocol": "*", + "sourceAddressPrefix": "10.1.0.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + } + ] + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkSecurityGroups" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 3, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 2, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_azurewebsites_net_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 5, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_redis_cache_windows_net_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 2, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('publicIPAddresses_pip_odms_webapp_dev_name')]", + "properties": { + "idleTimeoutInMinutes": 4, + "ipAddress": "20.89.52.87", + "ipTags": [], + "publicIPAddressVersion": "IPv4", + "publicIPAllocationMethod": "Static" + }, + "sku": { + "name": "Standard", + "tier": "Regional" + }, + "type": "Microsoft.Network/publicIPAddresses" + }, + { + "apiVersion": "2021-12-01-preview", + "location": "japaneast", + "name": "[parameters('workspaces_log_odms_agw_dev_name')]", + "properties": { + "features": { + "enableLogAccessUsingOnlyResourcePermissions": true + }, + "publicNetworkAccessForIngestion": "Enabled", + "publicNetworkAccessForQuery": "Enabled", + "retentionInDays": 30, + "sku": { + "name": "pergb2018" + }, + "workspaceCapping": { + "dailyQuotaGb": -1.0 + } + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.OperationalInsights/workspaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_pep_odms_app_dev_nic_6b27b52b_0703_4bfa_b69a_66b82ec6ca3e_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"a1374a0c-8421-4916-a5b5-5be192b5e612\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_app_dev_nic_6b27b52b_0703_4bfa_b69a_66b82ec6ca3e_name')), '/ipConfigurations/privateEndpointIpConfig.f420b4b1-6b36-454d-bee6-fed212a66756')]", + "name": "privateEndpointIpConfig.f420b4b1-6b36-454d-bee6-fed212a66756", + "properties": { + "primary": true, + "privateIPAddress": "10.1.1.6", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "app-odms-dictation-dev.azurewebsites.net", + "app-odms-dictation-dev.scm.azurewebsites.net" + ], + "groupId": "sites", + "requiredMemberName": "sites" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_pep_odms_app_test_nic_e7e4687e_685e_4023_bbab_a16ccfe8822b_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"4ae02394-b8c4-4949-b8c9-afa8f9a4816c\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_app_test_nic_e7e4687e_685e_4023_bbab_a16ccfe8822b_name')), '/ipConfigurations/privateEndpointIpConfig.2c5fae85-4959-4d63-ae7b-569ad00b2fdc')]", + "name": "privateEndpointIpConfig.2c5fae85-4959-4d63-ae7b-569ad00b2fdc", + "properties": { + "primary": true, + "privateIPAddress": "10.1.1.9", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "app-odms-dictation-test.azurewebsites.net", + "app-odms-dictation-test.scm.azurewebsites.net" + ], + "groupId": "sites", + "requiredMemberName": "sites" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_pep_odms_staapp_dev_nic_a67c70a7_750f_47d4_9844_b82b66095ef1_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"bcd7e924-b9ca-4e16-b1b5-06862ab29d01\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_staapp_dev_nic_a67c70a7_750f_47d4_9844_b82b66095ef1_name')), '/ipConfigurations/privateEndpointIpConfig.d2400e78-a963-4592-9d8e-6169079fd8cc')]", + "name": "privateEndpointIpConfig.d2400e78-a963-4592-9d8e-6169079fd8cc", + "properties": { + "primary": true, + "privateIPAddress": "10.1.1.4", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "white-forest-008bc2c00.2.azurestaticapps.net" + ], + "groupId": "staticSites", + "requiredMemberName": "staticSites" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + }, + { + "etag": "W/\"bcd7e924-b9ca-4e16-b1b5-06862ab29d01\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_staapp_dev_nic_a67c70a7_750f_47d4_9844_b82b66095ef1_name')), '/ipConfigurations/privateEndpointIpConfig.faa7a0fb-e826-4dcb-9942-2d0d86691a1a')]", + "name": "privateEndpointIpConfig.faa7a0fb-e826-4dcb-9942-2d0d86691a1a", + "properties": { + "primary": false, + "privateIPAddress": "10.1.1.5", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [], + "groupId": "staticSites", + "requiredMemberName": "staticSites-staging" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_vnet_odms_network_test_nic_fc58cc80_a813_4513_b04f_e61cfaaf2132_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"6d390108-7c0d-43db-a409-64ec2159619f\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vnet_odms_network_test_nic_fc58cc80_a813_4513_b04f_e61cfaaf2132_name')), '/ipConfigurations/privateEndpointIpConfig.aeb84aa5-5ca0-4382-9eee-b17119776cde')]", + "name": "privateEndpointIpConfig.aeb84aa5-5ca0-4382-9eee-b17119776cde", + "properties": { + "primary": true, + "privateIPAddress": "10.1.1.8", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [], + "groupId": "sites", + "requiredMemberName": "sites" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_dev_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_dev_name'), '/AllowAppServiceInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1001, + "protocol": "TCP", + "sourceAddressPrefix": "10.1.10.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_dev_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_public_dev_name'), '/AllowCidrBlockCustomAnyInbound')]", + "properties": { + "access": "Allow", + "description": "10.1.0.0/24iapplication gateway̏Tulbgj̎M", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 100, + "protocol": "*", + "sourceAddressPrefix": "10.1.0.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_dev_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_dev_name'), '/AllowDeployMigrationInbound')]", + "properties": { + "access": "Allow", + "description": "deploỹ}CO[V", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1004, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.4.4/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_dev_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_dev_name'), '/bastionVMInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1003, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_dev_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_dev_name'), '/DenyAllInbound')]", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/app-odms-dictation-dev')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.1.1.6" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-app-dev with resource guid 657b11ad-2e42-4e1b-824b-b4a4027342db" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/app-odms-dictation-dev.scm')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.1.1.6" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-app-dev with resource guid 657b11ad-2e42-4e1b-824b-b4a4027342db" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/app-odms-dictation-test')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.1.1.9" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-app-test with resource guid 78a4dbd3-7b3f-436e-a7ae-3aba5cea7341" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/app-odms-dictation-test.scm')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.1.1.9" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-app-test with resource guid 78a4dbd3-7b3f-436e-a7ae-3aba5cea7341" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'), '/mysql-odms-db-dev')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.1.2.4" + } + ], + "ttl": 30 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'), '/mysql-odms-dev')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.1.2.5" + } + ], + "ttl": 30 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'), '/redis-odms-cache-dev')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.1.1.7" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-redis-dev with resource guid 94fc8eb9-8b96-4b1c-a7d7-e2947d12eae7" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name'), '/white-forest-008bc2c00')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.1.1.4" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-staapp-dev with resource guid 6232bd6f-7057-4870-8003-eb57f0b89768" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/link-odms-maintenance-dev')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_maintenance_externalid')]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'), '/maintanance')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_maintenance_externalid')]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_pep_odms_app_dev_name')]", + "properties": { + "customDnsConfigs": [], + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_app_dev_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_pep_odms_app_dev_name'), '-8d56'))]", + "name": "[concat(parameters('privateEndpoints_pep_odms_app_dev_name'), '-8d56')]", + "properties": { + "groupIds": [ + "sites" + ], + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "status": "Approved" + }, + "privateLinkServiceId": "[parameters('sites_app_odms_dictation_dev_externalid')]" + } + } + ], + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_pep_odms_app_test_name')]", + "properties": { + "customDnsConfigs": [], + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_app_test_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_pep_odms_app_test_name'), '-81c1'))]", + "name": "[concat(parameters('privateEndpoints_pep_odms_app_test_name'), '-81c1')]", + "properties": { + "groupIds": [ + "sites" + ], + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "status": "Approved" + }, + "privateLinkServiceId": "[parameters('sites_app_odms_dictation_test_externalid')]" + } + } + ], + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_pep_odms_staapp_dev_name')]", + "properties": { + "customDnsConfigs": [], + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_staapp_dev_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_pep_odms_staapp_dev_name'), '-95e5'))]", + "name": "[concat(parameters('privateEndpoints_pep_odms_staapp_dev_name'), '-95e5')]", + "properties": { + "groupIds": [ + "staticSites" + ], + "privateLinkServiceConnectionState": { + "status": "Approved" + }, + "privateLinkServiceId": "[parameters('staticSites_staapp_odms_dictation_dev_externalid')]" + } + } + ], + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_vnet_odms_network_test_name')]", + "properties": { + "customDnsConfigs": [], + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_vnet_odms_network_test_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_vnet_odms_network_test_name'), '-a1c6'))]", + "name": "[concat(parameters('privateEndpoints_vnet_odms_network_test_name'), '-a1c6')]", + "properties": { + "groupIds": [ + "sites" + ], + "privateLinkServiceConnectionState": { + "status": "Disconnected" + }, + "privateLinkServiceId": "[parameters('sites_app_odms_dictation_test_externalid')]" + } + } + ], + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]" + } + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_dev_name'), '/snet-odms-endpoint-dev')]", + "properties": { + "addressPrefix": "10.1.3.0/24", + "delegations": [], + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_dev_name'), '/peer-odms-maintenance-dev')]", + "properties": { + "allowForwardedTraffic": true, + "allowGatewayTransit": false, + "allowVirtualNetworkAccess": true, + "doNotVerifyRemoteGateways": false, + "peeringState": "Connected", + "peeringSyncLevel": "FullyInSync", + "remoteAddressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "remoteVirtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_maintenance_externalid')]" + }, + "remoteVirtualNetworkAddressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "useRemoteGateways": false + }, + "type": "Microsoft.Network/virtualNetworks/virtualNetworkPeerings" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_General|AlphabeticallySortedComputers')]", + "properties": { + "category": "General Exploration", + "displayName": "All Computers with their most recent data", + "query": "search not(ObjectName == \"Advisor Metrics\" or ObjectName == \"ManagedSpace\") | summarize AggregatedValue = max(TimeGenerated) by Computer | limit 500000 | sort by Computer asc\r\n// Oql: NOT(ObjectName=\"Advisor Metrics\" OR ObjectName=ManagedSpace) | measure max(TimeGenerated) by Computer | top 500000 | Sort Computer // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_General|dataPointsPerManagementGroup')]", + "properties": { + "category": "General Exploration", + "displayName": "Which Management Group is generating the most data points?", + "query": "search * | summarize AggregatedValue = count() by ManagementGroupName\r\n// Oql: * | Measure count() by ManagementGroupName // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_General|dataTypeDistribution')]", + "properties": { + "category": "General Exploration", + "displayName": "Distribution of data Types", + "query": "search * | extend Type = $table | summarize AggregatedValue = count() by Type\r\n// Oql: * | Measure count() by Type // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_General|StaleComputers')]", + "properties": { + "category": "General Exploration", + "displayName": "Stale Computers (data older than 24 hours)", + "query": "search not(ObjectName == \"Advisor Metrics\" or ObjectName == \"ManagedSpace\") | summarize lastdata = max(TimeGenerated) by Computer | limit 500000 | where lastdata < ago(24h)\r\n// Oql: NOT(ObjectName=\"Advisor Metrics\" OR ObjectName=ManagedSpace) | measure max(TimeGenerated) as lastdata by Computer | top 500000 | where lastdata < NOW-24HOURS // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|AllEvents')]", + "properties": { + "category": "Log Management", + "displayName": "All Events", + "query": "Event | sort by TimeGenerated desc\r\n// Oql: Type=Event // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|AllSyslog')]", + "properties": { + "category": "Log Management", + "displayName": "All Syslogs", + "query": "Syslog | sort by TimeGenerated desc\r\n// Oql: Type=Syslog // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|AllSyslogByFacility')]", + "properties": { + "category": "Log Management", + "displayName": "All Syslog Records grouped by Facility", + "query": "Syslog | summarize AggregatedValue = count() by Facility\r\n// Oql: Type=Syslog | Measure count() by Facility // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|AllSyslogByProcessName')]", + "properties": { + "category": "Log Management", + "displayName": "All Syslog Records grouped by ProcessName", + "query": "Syslog | summarize AggregatedValue = count() by ProcessName\r\n// Oql: Type=Syslog | Measure count() by ProcessName // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|AllSyslogsWithErrors')]", + "properties": { + "category": "Log Management", + "displayName": "All Syslog Records with Errors", + "query": "Syslog | where SeverityLevel == \"error\" | sort by TimeGenerated desc\r\n// Oql: Type=Syslog SeverityLevel=error // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|AverageHTTPRequestTimeByClientIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Average HTTP Request time by Client IP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = avg(TimeTaken) by cIP\r\n// Oql: Type=W3CIISLog | Measure Avg(TimeTaken) by cIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|AverageHTTPRequestTimeHTTPMethod')]", + "properties": { + "category": "Log Management", + "displayName": "Average HTTP Request time by HTTP Method", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = avg(TimeTaken) by csMethod\r\n// Oql: Type=W3CIISLog | Measure Avg(TimeTaken) by csMethod // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|CountIISLogEntriesClientIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by Client IP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by cIP\r\n// Oql: Type=W3CIISLog | Measure count() by cIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|CountIISLogEntriesHTTPRequestMethod')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by HTTP Request Method", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csMethod\r\n// Oql: Type=W3CIISLog | Measure count() by csMethod // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|CountIISLogEntriesHTTPUserAgent')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by HTTP User Agent", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csUserAgent\r\n// Oql: Type=W3CIISLog | Measure count() by csUserAgent // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|CountOfIISLogEntriesByHostRequestedByClient')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by Host requested by client", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csHost\r\n// Oql: Type=W3CIISLog | Measure count() by csHost // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|CountOfIISLogEntriesByURLForHost')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by URL for the host \"www.contoso.com\" (replace with your own)", + "query": "search csHost == \"www.contoso.com\" | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csUriStem\r\n// Oql: Type=W3CIISLog csHost=\"www.contoso.com\" | Measure count() by csUriStem // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|CountOfIISLogEntriesByURLRequestedByClient')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by URL requested by client (without query strings)", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csUriStem\r\n// Oql: Type=W3CIISLog | Measure count() by csUriStem // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|CountOfWarningEvents')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events with level \"Warning\" grouped by Event ID", + "query": "Event | where EventLevelName == \"warning\" | summarize AggregatedValue = count() by EventID\r\n// Oql: Type=Event EventLevelName=warning | Measure count() by EventID // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|DisplayBreakdownRespondCodes')]", + "properties": { + "category": "Log Management", + "displayName": "Shows breakdown of response codes", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by scStatus\r\n// Oql: Type=W3CIISLog | Measure count() by scStatus // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|EventsByEventLog')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events grouped by Event Log", + "query": "Event | summarize AggregatedValue = count() by EventLog\r\n// Oql: Type=Event | Measure count() by EventLog // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|EventsByEventsID')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events grouped by Event ID", + "query": "Event | summarize AggregatedValue = count() by EventID\r\n// Oql: Type=Event | Measure count() by EventID // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|EventsByEventSource')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events grouped by Event Source", + "query": "Event | summarize AggregatedValue = count() by Source\r\n// Oql: Type=Event | Measure count() by Source // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|EventsInOMBetween2000to3000')]", + "properties": { + "category": "Log Management", + "displayName": "Events in the Operations Manager Event Log whose Event ID is in the range between 2000 and 3000", + "query": "Event | where EventLog == \"Operations Manager\" and EventID >= 2000 and EventID <= 3000 | sort by TimeGenerated desc\r\n// Oql: Type=Event EventLog=\"Operations Manager\" EventID:[2000..3000] // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|EventsWithStartedinEventID')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events containing the word \"started\" grouped by EventID", + "query": "search in (Event) \"started\" | summarize AggregatedValue = count() by EventID\r\n// Oql: Type=Event \"started\" | Measure count() by EventID // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|FindMaximumTimeTakenForEachPage')]", + "properties": { + "category": "Log Management", + "displayName": "Find the maximum time taken for each page", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = max(TimeTaken) by csUriStem\r\n// Oql: Type=W3CIISLog | Measure Max(TimeTaken) by csUriStem // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|IISLogEntriesForClientIP')]", + "properties": { + "category": "Log Management", + "displayName": "IIS Log Entries for a specific client IP Address (replace with your own)", + "query": "search cIP == \"192.168.0.1\" | extend Type = $table | where Type == W3CIISLog | sort by TimeGenerated desc | project csUriStem, scBytes, csBytes, TimeTaken, scStatus\r\n// Oql: Type=W3CIISLog cIP=\"192.168.0.1\" | Select csUriStem,scBytes,csBytes,TimeTaken,scStatus // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|ListAllIISLogEntries')]", + "properties": { + "category": "Log Management", + "displayName": "All IIS Log Entries", + "query": "search * | extend Type = $table | where Type == W3CIISLog | sort by TimeGenerated desc\r\n// Oql: Type=W3CIISLog // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|NoOfConnectionsToOMSDKService')]", + "properties": { + "category": "Log Management", + "displayName": "How many connections to Operations Manager's SDK service by day", + "query": "Event | where EventID == 26328 and EventLog == \"Operations Manager\" | summarize AggregatedValue = count() by bin(TimeGenerated, 1d) | sort by TimeGenerated desc\r\n// Oql: Type=Event EventID=26328 EventLog=\"Operations Manager\" | Measure count() interval 1DAY // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|ServerRestartTime')]", + "properties": { + "category": "Log Management", + "displayName": "When did my servers initiate restart?", + "query": "search in (Event) \"shutdown\" and EventLog == \"System\" and Source == \"User32\" and EventID == 1074 | sort by TimeGenerated desc | project TimeGenerated, Computer\r\n// Oql: shutdown Type=Event EventLog=System Source=User32 EventID=1074 | Select TimeGenerated,Computer // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|Show404PagesList')]", + "properties": { + "category": "Log Management", + "displayName": "Shows which pages people are getting a 404 for", + "query": "search scStatus == 404 | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csUriStem\r\n// Oql: Type=W3CIISLog scStatus=404 | Measure count() by csUriStem // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|ShowServersThrowingInternalServerError')]", + "properties": { + "category": "Log Management", + "displayName": "Shows servers that are throwing internal server error", + "query": "search scStatus == 500 | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by sComputerName\r\n// Oql: Type=W3CIISLog scStatus=500 | Measure count() by sComputerName // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|TotalBytesReceivedByEachAzureRoleInstance')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes received by each Azure Role Instance", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(csBytes) by RoleInstance\r\n// Oql: Type=W3CIISLog | Measure Sum(csBytes) by RoleInstance // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|TotalBytesReceivedByEachIISComputer')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes received by each IIS Computer", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(csBytes) by Computer | limit 500000\r\n// Oql: Type=W3CIISLog | Measure Sum(csBytes) by Computer | top 500000 // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|TotalBytesRespondedToClientsByClientIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes responded back to clients by Client IP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(scBytes) by cIP\r\n// Oql: Type=W3CIISLog | Measure Sum(scBytes) by cIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|TotalBytesRespondedToClientsByEachIISServerIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes responded back to clients by each IIS ServerIP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(scBytes) by sIP\r\n// Oql: Type=W3CIISLog | Measure Sum(scBytes) by sIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|TotalBytesSentByClientIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes sent by Client IP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(csBytes) by cIP\r\n// Oql: Type=W3CIISLog | Measure Sum(csBytes) by cIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|WarningEvents')]", + "properties": { + "category": "Log Management", + "displayName": "All Events with level \"Warning\"", + "query": "Event | where EventLevelName == \"warning\" | sort by TimeGenerated desc\r\n// Oql: Type=Event EventLevelName=warning // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|WindowsFireawallPolicySettingsChanged')]", + "properties": { + "category": "Log Management", + "displayName": "Windows Firewall Policy settings have changed", + "query": "Event | where EventLog == \"Microsoft-Windows-Windows Firewall With Advanced Security/Firewall\" and EventID == 2008 | sort by TimeGenerated desc\r\n// Oql: Type=Event EventLog=\"Microsoft-Windows-Windows Firewall With Advanced Security/Firewall\" EventID=2008 // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_dev_name'), ')_LogManagement|WindowsFireawallPolicySettingsChangedByMachines')]", + "properties": { + "category": "Log Management", + "displayName": "On which machines and how many times have Windows Firewall Policy settings changed", + "query": "Event | where EventLog == \"Microsoft-Windows-Windows Firewall With Advanced Security/Firewall\" and EventID == 2008 | summarize AggregatedValue = count() by Computer | limit 500000\r\n// Oql: Type=Event EventLog=\"Microsoft-Windows-Windows Firewall With Advanced Security/Firewall\" EventID=2008 | measure count() by Computer | top 500000 // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AACAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AACAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AACHttpRequest')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AACHttpRequest" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADB2CRequestLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADB2CRequestLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesAccountLogon')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesAccountLogon" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesAccountManagement')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesAccountManagement" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesDirectoryServiceAccess')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesDirectoryServiceAccess" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesDNSAuditsDynamicUpdates')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesDNSAuditsDynamicUpdates" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesDNSAuditsGeneral')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesDNSAuditsGeneral" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesLogonLogoff')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesLogonLogoff" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesPolicyChange')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesPolicyChange" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesPrivilegeUse')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesPrivilegeUse" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADDomainServicesSystemSecurity')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesSystemSecurity" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADManagedIdentitySignInLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADManagedIdentitySignInLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADNonInteractiveUserSignInLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADNonInteractiveUserSignInLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADProvisioningLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADProvisioningLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADRiskyServicePrincipals')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADRiskyServicePrincipals" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADRiskyUsers')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADRiskyUsers" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADServicePrincipalRiskEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADServicePrincipalRiskEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADServicePrincipalSignInLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADServicePrincipalSignInLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AADUserRiskEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADUserRiskEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ABSBotRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ABSBotRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ABSChannelToBotRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ABSChannelToBotRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ABSDependenciesRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ABSDependenciesRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACICollaborationAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACICollaborationAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACRConnectedClientList')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACRConnectedClientList" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSAuthIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSAuthIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSBillingUsage')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSBillingUsage" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSCallAutomationIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallAutomationIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSCallAutomationMediaSummary')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallAutomationMediaSummary" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSCallDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSCallRecordingIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallRecordingIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSCallRecordingSummary')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallRecordingSummary" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSCallSummary')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallSummary" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSCallSurvey')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallSurvey" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSChatIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSChatIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSEmailSendMailOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSEmailSendMailOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSEmailStatusUpdateOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSEmailStatusUpdateOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSEmailUserEngagementOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSEmailUserEngagementOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSNetworkTraversalDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSNetworkTraversalDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSNetworkTraversalIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSNetworkTraversalIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSRoomsIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSRoomsIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ACSSMSIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSSMSIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AddonAzureBackupAlerts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupAlerts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AddonAzureBackupJobs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupJobs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AddonAzureBackupPolicy')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupPolicy" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AddonAzureBackupProtectedInstance')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupProtectedInstance" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AddonAzureBackupStorage')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupStorage" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFActivityRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFActivityRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFAirflowSchedulerLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFAirflowSchedulerLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFAirflowTaskLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFAirflowTaskLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFAirflowWebLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFAirflowWebLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFAirflowWorkerLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFAirflowWorkerLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFPipelineRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFPipelineRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSandboxActivityRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSandboxActivityRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSandboxPipelineRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSandboxPipelineRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSSignInLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSignInLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSSISIntegrationRuntimeLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISIntegrationRuntimeLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSSISPackageEventMessageContext')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageEventMessageContext" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSSISPackageEventMessages')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageEventMessages" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSSISPackageExecutableStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageExecutableStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSSISPackageExecutionComponentPhases')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageExecutionComponentPhases" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFSSISPackageExecutionDataStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageExecutionDataStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADFTriggerRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFTriggerRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADPAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADPAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADPDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADPDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADPRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADPRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADSecurityAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADSecurityAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADTDataHistoryOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTDataHistoryOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADTDigitalTwinsOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTDigitalTwinsOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADTEventRoutesOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTEventRoutesOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADTModelsOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTModelsOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADTQueryOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTQueryOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADXCommand')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXCommand" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADXIngestionBatching')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXIngestionBatching" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADXJournal')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXJournal" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADXQuery')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXQuery" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADXTableDetails')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXTableDetails" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ADXTableUsageStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXTableUsageStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AegDataPlaneRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AegDataPlaneRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AegDeliveryFailureLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AegDeliveryFailureLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AegPublishFailureLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AegPublishFailureLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AEWAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AEWAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AEWComputePipelinesLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AEWComputePipelinesLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AFSAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AFSAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodApplicationAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodApplicationAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodFarmManagementLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodFarmManagementLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodFarmOperationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodFarmOperationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodInsightLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodInsightLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodJobProcessedLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodJobProcessedLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodModelInferenceLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodModelInferenceLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodProviderAuthLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodProviderAuthLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodSatelliteLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodSatelliteLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodSensorManagementLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodSensorManagementLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AgriFoodWeatherLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodWeatherLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AGSGrafanaLoginEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AGSGrafanaLoginEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AHDSDicomAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AHDSDicomAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AHDSDicomDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AHDSDicomDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AHDSMedTechDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AHDSMedTechDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AirflowDagProcessingLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AirflowDagProcessingLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AKSAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AKSAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AKSAuditAdmin')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AKSAuditAdmin" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AKSControlPlane')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AKSControlPlane" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/Alert')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Alert" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlComputeClusterEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlComputeClusterEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlComputeCpuGpuUtilization')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlComputeCpuGpuUtilization" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlComputeInstanceEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlComputeInstanceEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlComputeJobEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlComputeJobEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlDataLabelEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlDataLabelEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlDataSetEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlDataSetEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlDataStoreEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlDataStoreEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlDeploymentEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlDeploymentEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlEnvironmentEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlEnvironmentEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlInferencingEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlInferencingEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlModelsEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlModelsEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlOnlineEndpointConsoleLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlOnlineEndpointConsoleLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlOnlineEndpointEventLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlOnlineEndpointEventLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlOnlineEndpointTrafficLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlOnlineEndpointTrafficLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlPipelineEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlPipelineEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlRegistryReadEventsLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlRegistryReadEventsLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlRegistryWriteEventsLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlRegistryWriteEventsLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlRunEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlRunEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AmlRunStatusChangedEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlRunStatusChangedEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AMSKeyDeliveryRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AMSKeyDeliveryRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AMSLiveEventOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AMSLiveEventOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AMSMediaAccountHealth')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AMSMediaAccountHealth" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AMSStreamingEndpointRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AMSStreamingEndpointRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ANFFileAccess')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ANFFileAccess" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ApiManagementGatewayLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ApiManagementGatewayLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ApiManagementWebSocketConnectionLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ApiManagementWebSocketConnectionLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppAvailabilityResults')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppAvailabilityResults" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppBrowserTimings')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppBrowserTimings" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppCenterError')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppCenterError" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppDependencies')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppDependencies" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppEnvSpringAppConsoleLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppEnvSpringAppConsoleLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppEvents" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppExceptions')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppExceptions" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppMetrics" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppPageViews')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppPageViews" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppPerformanceCounters')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppPerformanceCounters" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppPlatformBuildLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformBuildLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppPlatformContainerEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformContainerEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppPlatformIngressLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformIngressLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppPlatformLogsforSpring')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformLogsforSpring" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppPlatformSystemLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformSystemLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppRequests" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceAntivirusScanAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceAntivirusScanAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceAppLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceAppLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceConsoleLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceConsoleLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceEnvironmentPlatformLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceEnvironmentPlatformLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceFileAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceFileAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceHTTPLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceHTTPLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceIPSecAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceIPSecAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServicePlatformLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServicePlatformLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppServiceServerlessSecurityPluginData')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceServerlessSecurityPluginData" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppSystemEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppSystemEvents" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AppTraces')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppTraces" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ASCAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASCAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ASCDeviceEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASCDeviceEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ASimAuditEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASimAuditEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ASimAuthenticationEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASimAuthenticationEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ASimProcessEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASimProcessEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ASRJobs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASRJobs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ASRReplicatedItems')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASRReplicatedItems" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ATCExpressRouteCircuitIpfix')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ATCExpressRouteCircuitIpfix" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AUIEventsAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AUIEventsAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AUIEventsOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AUIEventsOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AutoscaleEvaluationsLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AutoscaleEvaluationsLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AutoscaleScaleActionsLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AutoscaleScaleActionsLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AVNMNetworkGroupMembershipChange')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AVNMNetworkGroupMembershipChange" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AVNMRuleCollectionChange')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AVNMRuleCollectionChange" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AVSSyslog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AVSSyslog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWApplicationRule')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWApplicationRule" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWApplicationRuleAggregation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWApplicationRuleAggregation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWDnsQuery')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWDnsQuery" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWFatFlow')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWFatFlow" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWFlowTrace')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWFlowTrace" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWIdpsSignature')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWIdpsSignature" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWInternalFqdnResolutionFailure')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWInternalFqdnResolutionFailure" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWNatRule')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWNatRule" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWNatRuleAggregation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWNatRuleAggregation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWNetworkRule')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWNetworkRule" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWNetworkRuleAggregation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWNetworkRuleAggregation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZFWThreatIntel')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWThreatIntel" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZKVAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZKVAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZKVPolicyEvaluationDetailsLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZKVPolicyEvaluationDetailsLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSApplicationMetricLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSApplicationMetricLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSArchiveLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSArchiveLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSAutoscaleLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSAutoscaleLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSCustomerManagedKeyUserLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSCustomerManagedKeyUserLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSHybridConnectionsEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSHybridConnectionsEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSKafkaCoordinatorLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSKafkaCoordinatorLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSKafkaUserErrorLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSKafkaUserErrorLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSOperationalLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSOperationalLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSRunTimeAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSRunTimeAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AZMSVnetConnectionEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSVnetConnectionEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureActivity')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AzureActivity" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureActivityV2')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureActivityV2" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureAttestationDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureAttestationDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureCloudHsmAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureCloudHsmAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureDevOpsAuditing')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureDevOpsAuditing" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "columns": [ + { + "name": "WAFPolicyID_s", + "type": "string" + }, + { + "name": "clientIp_s", + "type": "string" + }, + { + "name": "ruleSetType_s", + "type": "string" + }, + { + "name": "ruleSetVersion_s", + "type": "string" + }, + { + "name": "ruleId_s", + "type": "string" + }, + { + "name": "ruleGroup_s", + "type": "string" + }, + { + "name": "Message", + "type": "string" + }, + { + "name": "action_s", + "type": "string" + }, + { + "name": "details_message_s", + "type": "string" + }, + { + "name": "details_data_s", + "type": "string" + }, + { + "name": "details_file_s", + "type": "string" + }, + { + "name": "details_line_s", + "type": "string" + }, + { + "name": "hostname_s", + "type": "string" + }, + { + "name": "policyId_s", + "type": "string" + }, + { + "name": "policyScope_s", + "type": "string" + }, + { + "name": "policyScopeName_s", + "type": "string" + }, + { + "name": "engine_s", + "type": "string" + }, + { + "name": "timeStamp_t", + "type": "datetime" + }, + { + "name": "ResourceId", + "type": "string" + }, + { + "name": "listenerName_s", + "type": "string" + }, + { + "name": "ruleName_s", + "type": "string" + }, + { + "name": "backendPoolName_s", + "type": "string" + }, + { + "name": "backendSettingName_s", + "type": "string" + }, + { + "name": "OperationName", + "type": "string" + }, + { + "name": "Category", + "type": "string" + }, + { + "name": "instanceId_s", + "type": "string" + }, + { + "name": "clientIP_s", + "type": "string" + }, + { + "name": "clientPort_d", + "type": "real" + }, + { + "name": "httpMethod_s", + "type": "string" + }, + { + "name": "originalRequestUriWithArgs_s", + "type": "string" + }, + { + "name": "requestUri_s", + "type": "string" + }, + { + "name": "requestQuery_s", + "type": "string" + }, + { + "name": "userAgent_s", + "type": "string" + }, + { + "name": "httpStatus_d", + "type": "real" + }, + { + "name": "httpVersion_s", + "type": "string" + }, + { + "name": "receivedBytes_d", + "type": "real" + }, + { + "name": "sentBytes_d", + "type": "real" + }, + { + "name": "clientResponseTime_d", + "type": "real" + }, + { + "name": "timeTaken_d", + "type": "real" + }, + { + "name": "WAFEvaluationTime_s", + "type": "string" + }, + { + "name": "WAFMode_s", + "type": "string" + }, + { + "name": "transactionId_g", + "type": "guid" + }, + { + "name": "sslEnabled_s", + "type": "string" + }, + { + "name": "sslCipher_s", + "type": "string" + }, + { + "name": "sslProtocol_s", + "type": "string" + }, + { + "name": "sslClientVerify_s", + "type": "string" + }, + { + "name": "sslClientCertificateFingerprint_s", + "type": "string" + }, + { + "name": "sslClientCertificateIssuerName_s", + "type": "string" + }, + { + "name": "serverRouted_s", + "type": "string" + }, + { + "name": "serverStatus_s", + "type": "string" + }, + { + "name": "serverResponseLatency_s", + "type": "string" + }, + { + "name": "upstreamSourcePort_s", + "type": "string" + }, + { + "name": "originalHost_s", + "type": "string" + }, + { + "name": "host_s", + "type": "string" + }, + { + "name": "SubscriptionId", + "type": "guid" + }, + { + "name": "ResourceGroup", + "type": "string" + }, + { + "name": "ResourceProvider", + "type": "string" + }, + { + "name": "Resource", + "type": "string" + }, + { + "name": "ResourceType", + "type": "string" + }, + { + "name": "_CustomFieldsCollection", + "type": "dynamic" + } + ], + "name": "AzureDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureLoadTestingOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureLoadTestingOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/AzureMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/BaiClusterEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BaiClusterEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/BaiClusterNodeEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BaiClusterNodeEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/BaiJobEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BaiJobEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/BlockchainApplicationLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BlockchainApplicationLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/BlockchainProxyLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BlockchainProxyLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CassandraAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CassandraAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CassandraLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CassandraLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CCFApplicationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CCFApplicationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CDBCassandraRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBCassandraRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CDBControlPlaneRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBControlPlaneRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CDBDataPlaneRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBDataPlaneRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CDBGremlinRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBGremlinRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CDBMongoRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBMongoRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CDBPartitionKeyRUConsumption')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBPartitionKeyRUConsumption" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CDBPartitionKeyStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBPartitionKeyStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CDBQueryRuntimeStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBQueryRuntimeStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ChaosStudioExperimentEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ChaosStudioExperimentEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CHSMManagementAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CHSMManagementAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CIEventsAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CIEventsAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CIEventsOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CIEventsOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ComputerGroup')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ComputerGroup" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerAppConsoleLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerAppConsoleLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerAppSystemLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerAppSystemLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerImageInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerImageInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerInstanceLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerInstanceLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerLogV2')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerLogV2" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerNodeInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerNodeInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerRegistryLoginEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerRegistryLoginEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerRegistryRepositoryEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerRegistryRepositoryEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ContainerServiceLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerServiceLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/CoreAzureBackup')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CoreAzureBackup" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksAccounts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksAccounts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksCapsule8Dataplane')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksCapsule8Dataplane" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksClamAVScan')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksClamAVScan" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksClusterLibraries')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksClusterLibraries" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksClusters')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksClusters" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksDatabricksSQL')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksDatabricksSQL" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksDBFS')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksDBFS" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksDeltaPipelines')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksDeltaPipelines" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksFeatureStore')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksFeatureStore" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksGenie')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksGenie" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksGitCredentials')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksGitCredentials" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksGlobalInitScripts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksGlobalInitScripts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksIAMRole')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksIAMRole" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksInstancePools')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksInstancePools" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksJobs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksJobs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksMLflowAcledArtifact')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksMLflowAcledArtifact" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksMLflowExperiment')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksMLflowExperiment" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksModelRegistry')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksModelRegistry" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksNotebook')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksNotebook" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksPartnerHub')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksPartnerHub" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksRemoteHistoryService')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksRemoteHistoryService" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksRepos')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksRepos" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksSecrets')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksSecrets" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksServerlessRealTimeInference')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksServerlessRealTimeInference" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksSQL')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksSQL" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksSQLPermissions')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksSQLPermissions" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksSSH')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksSSH" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksTables')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksTables" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksUnityCatalog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksUnityCatalog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksWebTerminal')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksWebTerminal" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DatabricksWorkspace')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksWorkspace" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DataTransferOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DataTransferOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DevCenterDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DevCenterDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DSMAzureBlobStorageLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DSMAzureBlobStorageLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DSMDataClassificationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DSMDataClassificationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/DSMDataLabelingLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DSMDataLabelingLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/EnrichedMicrosoft365AuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "EnrichedMicrosoft365AuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ETWEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ETWEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/Event')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Event" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ExchangeAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ExchangeAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ExchangeOnlineAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ExchangeOnlineAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/FailedIngestion')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "FailedIngestion" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/FunctionAppLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "FunctionAppLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightAmbariClusterAlerts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightAmbariClusterAlerts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightAmbariSystemMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightAmbariSystemMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightGatewayAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightGatewayAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightHadoopAndYarnLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHadoopAndYarnLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightHadoopAndYarnMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHadoopAndYarnMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightHBaseLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHBaseLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightHBaseMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHBaseMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightHiveAndLLAPLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHiveAndLLAPLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightHiveAndLLAPMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHiveAndLLAPMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightHiveQueryAppStats')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHiveQueryAppStats" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightHiveTezAppStats')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHiveTezAppStats" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightJupyterNotebookEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightJupyterNotebookEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightKafkaLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightKafkaLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightKafkaMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightKafkaMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightKafkaServerLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightKafkaServerLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightOozieLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightOozieLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightRangerAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightRangerAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSecurityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSecurityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkApplicationEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkApplicationEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkBlockManagerEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkBlockManagerEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkEnvironmentEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkEnvironmentEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkExecutorEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkExecutorEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkExtraEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkExtraEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkJobEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkJobEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkSQLExecutionEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkSQLExecutionEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkStageEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkStageEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkStageTaskAccumulables')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkStageTaskAccumulables" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightSparkTaskEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkTaskEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightStormLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightStormLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightStormMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightStormMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/HDInsightStormTopologyMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightStormTopologyMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/Heartbeat')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Heartbeat" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/InsightsMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "InsightsMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/IntuneAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "IntuneAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/IntuneDeviceComplianceOrg')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "IntuneDeviceComplianceOrg" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/IntuneDevices')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "IntuneDevices" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/IntuneOperationalLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "IntuneOperationalLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/KubeEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/KubeHealth')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeHealth" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/KubeMonAgentEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeMonAgentEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/KubeNodeInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeNodeInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/KubePodInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubePodInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/KubePVInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubePVInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/KubeServices')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeServices" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LAQueryLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "LAQueryLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/LogicAppWorkflowRuntime')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "LogicAppWorkflowRuntime" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MCCEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MCCEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MCVPAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MCVPAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MCVPOperationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MCVPOperationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MicrosoftAzureBastionAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftAzureBastionAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MicrosoftDataShareReceivedSnapshotLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftDataShareReceivedSnapshotLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MicrosoftDataShareSentSnapshotLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftDataShareSentSnapshotLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MicrosoftDynamicsTelemetryPerformanceLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftDynamicsTelemetryPerformanceLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MicrosoftDynamicsTelemetrySystemMetricsLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftDynamicsTelemetrySystemMetricsLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MicrosoftGraphActivityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftGraphActivityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/MicrosoftHealthcareApisAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftHealthcareApisAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NCBMSecurityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCBMSecurityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NCBMSystemLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCBMSystemLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NCCKubernetesLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCCKubernetesLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NCCVMOrchestrationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCCVMOrchestrationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NCSStorageAlerts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCSStorageAlerts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NCSStorageLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCSStorageLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NetworkAccessTraffic')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NetworkAccessTraffic" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NSPAccessLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NSPAccessLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NTAIpDetails')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NTAIpDetails" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NTANetAnalytics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NTANetAnalytics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NTATopologyDetails')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NTATopologyDetails" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NWConnectionMonitorDestinationListenerResult')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NWConnectionMonitorDestinationListenerResult" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NWConnectionMonitorDNSResult')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NWConnectionMonitorDNSResult" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NWConnectionMonitorPathResult')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NWConnectionMonitorPathResult" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/NWConnectionMonitorTestResult')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NWConnectionMonitorTestResult" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/OEPAirFlowTask')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPAirFlowTask" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/OEPAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/OEPDataplaneLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPDataplaneLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/OEPElasticOperator')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPElasticOperator" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/OEPElasticsearch')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPElasticsearch" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/OLPSupplyChainEntityOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OLPSupplyChainEntityOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/OLPSupplyChainEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OLPSupplyChainEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/Operation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Operation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/Perf')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Perf" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PFTitleAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PFTitleAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PowerBIAuditTenant')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIAuditTenant" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PowerBIDatasetsTenant')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIDatasetsTenant" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PowerBIDatasetsTenantPreview')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIDatasetsTenantPreview" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PowerBIDatasetsWorkspace')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIDatasetsWorkspace" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PowerBIDatasetsWorkspacePreview')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIDatasetsWorkspacePreview" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PowerBIReportUsageTenant')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIReportUsageTenant" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PowerBIReportUsageWorkspace')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIReportUsageWorkspace" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PurviewDataSensitivityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PurviewDataSensitivityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PurviewScanStatusLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PurviewScanStatusLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/PurviewSecurityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PurviewSecurityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/REDConnectionEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "REDConnectionEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ResourceManagementPublicAccessLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ResourceManagementPublicAccessLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SCCMAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SCCMAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SCOMAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SCOMAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ServiceFabricOperationalEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ServiceFabricOperationalEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ServiceFabricReliableActorEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ServiceFabricReliableActorEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/ServiceFabricReliableServiceEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ServiceFabricReliableServiceEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SfBAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SfBAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SfBOnlineAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SfBOnlineAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SharePointOnlineAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SharePointOnlineAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SignalRServiceDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SignalRServiceDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SigninLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SigninLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SPAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SPAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SQLAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SQLAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SQLSecurityAuditEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SQLSecurityAuditEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageAntimalwareScanResults')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageAntimalwareScanResults" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageBlobLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageBlobLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageCacheOperationEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageCacheOperationEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageCacheUpgradeEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageCacheUpgradeEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageCacheWarningEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageCacheWarningEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageFileLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageFileLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageMalwareScanningResults')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageMalwareScanningResults" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageMoverCopyLogsFailed')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageMoverCopyLogsFailed" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageMoverCopyLogsTransferred')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageMoverCopyLogsTransferred" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageMoverJobRunLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageMoverJobRunLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageQueueLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageQueueLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/StorageTableLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageTableLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SucceededIngestion')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SucceededIngestion" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseBigDataPoolApplicationsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseBigDataPoolApplicationsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseBuiltinSqlPoolRequestsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseBuiltinSqlPoolRequestsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseDXCommand')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXCommand" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseDXFailedIngestion')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXFailedIngestion" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseDXIngestionBatching')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXIngestionBatching" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseDXQuery')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXQuery" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseDXSucceededIngestion')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXSucceededIngestion" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseDXTableDetails')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXTableDetails" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseDXTableUsageStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXTableUsageStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseGatewayApiRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseGatewayApiRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseGatewayEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseGatewayEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseIntegrationActivityRuns')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationActivityRuns" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseIntegrationActivityRunsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationActivityRunsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseIntegrationPipelineRuns')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationPipelineRuns" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseIntegrationPipelineRunsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationPipelineRunsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseIntegrationTriggerRuns')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationTriggerRuns" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseIntegrationTriggerRunsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationTriggerRunsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseLinkEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseLinkEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseRBACEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseRBACEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseRbacOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseRbacOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseScopePoolScopeJobsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseScopePoolScopeJobsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseScopePoolScopeJobsStateChange')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseScopePoolScopeJobsStateChange" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseSqlPoolDmsWorkers')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolDmsWorkers" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseSqlPoolExecRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolExecRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseSqlPoolRequestSteps')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolRequestSteps" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseSqlPoolSqlRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolSqlRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/SynapseSqlPoolWaits')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolWaits" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/Syslog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Syslog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/TSIIngress')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "TSIIngress" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/UCClient')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCClient" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/UCClientReadinessStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCClientReadinessStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/UCClientUpdateStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCClientUpdateStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/UCDeviceAlert')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCDeviceAlert" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/UCDOAggregatedStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCDOAggregatedStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/UCDOStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCDOStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/UCServiceUpdateStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCServiceUpdateStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/UCUpdateAlert')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCUpdateAlert" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/Usage')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "Usage" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/VIAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VIAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/VIIndexing')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VIIndexing" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/VMBoundPort')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VMBoundPort" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/VMComputer')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VMComputer" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/VMConnection')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VMConnection" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/VMProcess')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VMProcess" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/W3CIISLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "W3CIISLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WebPubSubConnectivity')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WebPubSubConnectivity" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WebPubSubHttpRequest')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WebPubSubHttpRequest" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WebPubSubMessaging')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WebPubSubMessaging" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WindowsClientAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WindowsClientAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WindowsServerAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WindowsServerAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WorkloadDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WorkloadDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDAgentHealthStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDAgentHealthStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDAutoscaleEvaluationPooled')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDAutoscaleEvaluationPooled" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDCheckpoints')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDCheckpoints" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDConnectionGraphicsDataPreview')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDConnectionGraphicsDataPreview" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDConnectionNetworkData')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDConnectionNetworkData" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDConnections')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDConnections" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDErrors')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDErrors" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDFeeds')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDFeeds" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDHostRegistrations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDHostRegistrations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDManagement')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDManagement" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_dev_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_dev_name'), '/WVDSessionHostManagement')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDSessionHostManagement" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/0e7de603e70ca')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name'), '/3213f63d9eb91')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_mysql_odms_dev_private_mysql_database_azure_com_name'), '/crbjzfataezdk')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'), '/crbjzfataezdk')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_app_dev_name'))]", + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_pep_odms_app_dev_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-azurewebsites-net", + "properties": { + "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_app_test_name'))]", + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_pep_odms_app_test_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-azurewebsites-net", + "properties": { + "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_staapp_dev_name'))]", + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_pep_odms_staapp_dev_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-2-azurestaticapps-net", + "properties": { + "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2_azurestaticapps_net_name'))]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_vnet_odms_network_test_name'))]", + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_vnet_odms_network_test_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-azurewebsites-net", + "properties": { + "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]", + "[resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_dev_name'), '/snet-odms-gateway-dev')]", + "properties": { + "addressPrefix": "10.1.0.0/24", + "applicationGatewayIPConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/gatewayIPConfigurations/appGatewayIpConfig')]" + } + ], + "delegations": [], + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + }, + { + "locations": [ + "*" + ], + "service": "Microsoft.Web" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_dev_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_dev_name'), '/snet-odms-integration-dev')]", + "properties": { + "addressPrefix": "10.1.10.0/24", + "delegations": [ + { + "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-integration-dev'), '/delegations/Microsoft.Web.serverFarms')]", + "name": "Microsoft.Web.serverFarms", + "properties": { + "serviceName": "Microsoft.Web/serverFarms" + }, + "type": "Microsoft.Network/virtualNetworks/subnets/delegations" + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_dev_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + }, + { + "locations": [ + "japaneast", + "japanwest" + ], + "service": "Microsoft.Storage" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_dev_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_dev_name'), '/snet-odms-private-dev')]", + "properties": { + "addressPrefix": "10.1.2.0/24", + "delegations": [ + { + "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-private-dev'), '/delegations/Microsoft.DBforMySQL.flexibleServers')]", + "name": "Microsoft.DBforMySQL.flexibleServers", + "properties": { + "serviceName": "Microsoft.DBforMySQL/flexibleServers" + }, + "type": "Microsoft.Network/virtualNetworks/subnets/delegations" + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_dev_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_dev_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_dev_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_dev_name'), '/snet-odms-public-dev')]", + "properties": { + "addressPrefix": "10.1.1.0/24", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_dev_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-gateway-dev')]", + "[resourceId('Microsoft.Network/publicIPAddresses', parameters('publicIPAddresses_pip_odms_webapp_dev_name'))]", + "[resourceId('Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies', parameters('ApplicationGatewayWebApplicationFirewallPolicies_waf_odms_agw_dev_name'))]" + ], + "location": "japaneast", + "name": "[parameters('applicationGateways_agw_odms_webapp_dev_name')]", + "properties": { + "autoscaleConfiguration": { + "maxCapacity": 10, + "minCapacity": 0 + }, + "backendAddressPools": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/backendAddressPools/pool-odms-app-dev')]", + "name": "pool-odms-app-dev", + "properties": { + "backendAddresses": [ + { + "fqdn": "app-odms-dictation-dev.azurewebsites.net" + } + ] + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/backendAddressPools/pool-odms-staapp-dev')]", + "name": "pool-odms-staapp-dev", + "properties": { + "backendAddresses": [ + { + "fqdn": "white-forest-008bc2c00.2.azurestaticapps.net" + } + ] + } + } + ], + "backendHttpSettingsCollection": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/backendHttpSettingsCollection/setting-odms-https-dev')]", + "name": "setting-odms-https-dev", + "properties": { + "affinityCookieName": "ApplicationGatewayAffinity", + "cookieBasedAffinity": "Disabled", + "path": "/", + "pickHostNameFromBackendAddress": true, + "port": 443, + "probe": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/probes/setting-odms-https-dev')]" + }, + "protocol": "Https", + "requestTimeout": 90 + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/backendHttpSettingsCollection/setting-odms-back-dev')]", + "name": "setting-odms-back-dev", + "properties": { + "affinityCookieName": "ApplicationGatewayAffinity", + "cookieBasedAffinity": "Disabled", + "path": "/", + "pickHostNameFromBackendAddress": true, + "port": 443, + "protocol": "Https", + "requestTimeout": 90 + } + } + ], + "backendSettingsCollection": [], + "enableHttp2": false, + "firewallPolicy": { + "id": "[resourceId('Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies', parameters('ApplicationGatewayWebApplicationFirewallPolicies_waf_odms_agw_dev_name'))]" + }, + "frontendIPConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/frontendIPConfigurations/appGwPublicFrontendIpIPv4')]", + "name": "appGwPublicFrontendIpIPv4", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "publicIPAddress": { + "id": "[resourceId('Microsoft.Network/publicIPAddresses', parameters('publicIPAddresses_pip_odms_webapp_dev_name'))]" + } + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/frontendIPConfigurations/appGwPrivateFrontendIpIPv4')]", + "name": "appGwPrivateFrontendIpIPv4", + "properties": { + "privateIPAddress": "10.1.0.10", + "privateIPAllocationMethod": "Static", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-gateway-dev')]" + } + } + } + ], + "frontendPorts": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/frontendPorts/port_443')]", + "name": "port_443", + "properties": { + "port": 443 + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/frontendPorts/port_4443')]", + "name": "port_4443", + "properties": { + "port": 4443 + } + } + ], + "gatewayIPConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/gatewayIPConfigurations/appGatewayIpConfig')]", + "name": "appGatewayIpConfig", + "properties": { + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-gateway-dev')]" + } + } + } + ], + "httpListeners": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/httpListeners/listener-odms-private-dev')]", + "name": "listener-odms-private-dev", + "properties": { + "frontendIPConfiguration": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/frontendIPConfigurations/appGwPrivateFrontendIpIPv4')]" + }, + "frontendPort": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/frontendPorts/port_4443')]" + }, + "hostNames": [], + "protocol": "Https", + "requireServerNameIndication": false, + "sslCertificate": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/sslCertificates/ca-odms-agw-dev')]" + } + } + } + ], + "listeners": [], + "loadDistributionPolicies": [], + "privateLinkConfigurations": [], + "probes": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/probes/setting-odms-https-dev')]", + "name": "setting-odms-https-dev", + "properties": { + "interval": 30, + "match": {}, + "minServers": 0, + "path": "/health", + "pickHostNameFromBackendHttpSettings": true, + "protocol": "Https", + "timeout": 30, + "unhealthyThreshold": 3 + } + } + ], + "redirectConfigurations": [], + "requestRoutingRules": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/requestRoutingRules/rule-odms-private-dev')]", + "name": "rule-odms-private-dev", + "properties": { + "httpListener": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/httpListeners/listener-odms-private-dev')]" + }, + "priority": 1, + "ruleType": "PathBasedRouting", + "urlPathMap": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/urlPathMaps/rule-odms-private-dev')]" + } + } + } + ], + "rewriteRuleSets": [], + "routingRules": [], + "sku": { + "name": "WAF_v2", + "tier": "WAF_v2" + }, + "sslCertificates": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/sslCertificates/ca-odms-agw-dev')]", + "name": "ca-odms-agw-dev", + "properties": {} + } + ], + "sslProfiles": [], + "trustedClientCertificates": [], + "trustedRootCertificates": [], + "urlPathMaps": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/urlPathMaps/rule-odms-private-dev')]", + "name": "rule-odms-private-dev", + "properties": { + "defaultBackendAddressPool": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/backendAddressPools/pool-odms-staapp-dev')]" + }, + "defaultBackendHttpSettings": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/backendHttpSettingsCollection/setting-odms-https-dev')]" + }, + "pathRules": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/urlPathMaps/rule-odms-private-dev/pathRules/target-odms-app-dev')]", + "name": "target-odms-app-dev", + "properties": { + "backendAddressPool": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/backendAddressPools/pool-odms-app-dev')]" + }, + "backendHttpSettings": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/backendHttpSettingsCollection/setting-odms-https-dev')]" + }, + "paths": [ + "/dictation/api/*" + ] + } + } + ] + } + } + ] + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Network/applicationGateways" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_dev_name'))]", + "[resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_dev_name'))]" + ], + "location": "japaneast", + "name": "[parameters('virtualNetworks_vnet_odms_network_dev_name')]", + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.1.0.0/16" + ] + }, + "enableDdosProtection": false, + "subnets": [ + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-endpoint-dev')]", + "name": "snet-odms-endpoint-dev", + "properties": { + "addressPrefix": "10.1.3.0/24", + "delegations": [], + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-public-dev')]", + "name": "snet-odms-public-dev", + "properties": { + "addressPrefix": "10.1.1.0/24", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_dev_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-gateway-dev')]", + "name": "snet-odms-gateway-dev", + "properties": { + "addressPrefix": "10.1.0.0/24", + "applicationGatewayIPConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_dev_name')), '/gatewayIPConfigurations/appGatewayIpConfig')]" + } + ], + "delegations": [], + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + }, + { + "locations": [ + "*" + ], + "service": "Microsoft.Web" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-private-dev')]", + "name": "snet-odms-private-dev", + "properties": { + "addressPrefix": "10.1.2.0/24", + "delegations": [ + { + "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-private-dev'), '/delegations/Microsoft.DBforMySQL.flexibleServers')]", + "name": "Microsoft.DBforMySQL.flexibleServers", + "properties": { + "serviceName": "Microsoft.DBforMySQL/flexibleServers" + }, + "type": "Microsoft.Network/virtualNetworks/subnets/delegations" + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_dev_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-integration-dev')]", + "name": "snet-odms-integration-dev", + "properties": { + "addressPrefix": "10.1.10.0/24", + "delegations": [ + { + "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'snet-odms-integration-dev'), '/delegations/Microsoft.Web.serverFarms')]", + "name": "Microsoft.Web.serverFarms", + "properties": { + "serviceName": "Microsoft.Web/serverFarms" + }, + "type": "Microsoft.Network/virtualNetworks/subnets/delegations" + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_dev_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + }, + { + "locations": [ + "japaneast", + "japanwest" + ], + "service": "Microsoft.Storage" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + } + ], + "virtualNetworkPeerings": [ + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/virtualNetworkPeerings', parameters('virtualNetworks_vnet_odms_network_dev_name'), 'peer-odms-maintenance-dev')]", + "name": "peer-odms-maintenance-dev", + "properties": { + "allowForwardedTraffic": true, + "allowGatewayTransit": false, + "allowVirtualNetworkAccess": true, + "doNotVerifyRemoteGateways": false, + "peeringState": "Connected", + "peeringSyncLevel": "FullyInSync", + "remoteAddressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "remoteVirtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_maintenance_externalid')]" + }, + "remoteVirtualNetworkAddressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "useRemoteGateways": false + }, + "type": "Microsoft.Network/virtualNetworks/virtualNetworkPeerings" + } + ] + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Network/virtualNetworks" + } + ], + "variables": {} +} diff --git a/configurations/azure/dev-notification-rg.json b/configurations/azure/dev-notification-rg.json new file mode 100644 index 0000000..ebce878 --- /dev/null +++ b/configurations/azure/dev-notification-rg.json @@ -0,0 +1,95 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "namespaces_ntfns_odms_dev_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2017-04-01", + "location": "Japan East", + "name": "[parameters('namespaces_ntfns_odms_dev_name')]", + "properties": { + "createdAt": "2023-07-24T01:26:14.6870000Z", + "critical": false, + "enabled": true, + "provisioningState": "Succeeded", + "serviceBusEndpoint": "[concat('https://', parameters('namespaces_ntfns_odms_dev_name'), '.servicebus.windows.net:443/')]", + "status": "Active", + "updatedAt": "2023-07-24T01:26:14.7370000Z" + }, + "sku": { + "name": "Free" + }, + "type": "Microsoft.NotificationHubs/namespaces" + }, + { + "apiVersion": "2017-04-01", + "dependsOn": [ + "[resourceId('Microsoft.NotificationHubs/namespaces', parameters('namespaces_ntfns_odms_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('namespaces_ntfns_odms_dev_name'), '/RootManageSharedAccessKey')]", + "properties": { + "rights": [ + "Manage", + "Listen", + "Send" + ] + }, + "type": "Microsoft.NotificationHubs/namespaces/AuthorizationRules" + }, + { + "apiVersion": "2017-04-01", + "dependsOn": [ + "[resourceId('Microsoft.NotificationHubs/namespaces', parameters('namespaces_ntfns_odms_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('namespaces_ntfns_odms_dev_name'), '/ntf-odms-dev')]", + "properties": { + "authorizationRules": [], + "registrationTtl": "10675199.02:48:05.4775807" + }, + "tags": { + "Project": "OMDS", + "environment": "develop" + }, + "type": "Microsoft.NotificationHubs/namespaces/NotificationHubs" + }, + { + "apiVersion": "2017-04-01", + "dependsOn": [ + "[resourceId('Microsoft.NotificationHubs/namespaces/NotificationHubs', parameters('namespaces_ntfns_odms_dev_name'), 'ntf-odms-dev')]", + "[resourceId('Microsoft.NotificationHubs/namespaces', parameters('namespaces_ntfns_odms_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('namespaces_ntfns_odms_dev_name'), '/ntf-odms-dev/DefaultFullSharedAccessSignature')]", + "properties": { + "rights": [ + "Manage", + "Listen", + "Send" + ] + }, + "type": "Microsoft.NotificationHubs/namespaces/NotificationHubs/AuthorizationRules" + }, + { + "apiVersion": "2017-04-01", + "dependsOn": [ + "[resourceId('Microsoft.NotificationHubs/namespaces/NotificationHubs', parameters('namespaces_ntfns_odms_dev_name'), 'ntf-odms-dev')]", + "[resourceId('Microsoft.NotificationHubs/namespaces', parameters('namespaces_ntfns_odms_dev_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('namespaces_ntfns_odms_dev_name'), '/ntf-odms-dev/DefaultListenSharedAccessSignature')]", + "properties": { + "rights": [ + "Listen" + ] + }, + "type": "Microsoft.NotificationHubs/namespaces/NotificationHubs/AuthorizationRules" + } + ], + "variables": {} +} diff --git a/configurations/azure/dev-storage-rg.json b/configurations/azure/dev-storage-rg.json new file mode 100644 index 0000000..ea67222 --- /dev/null +++ b/configurations/azure/dev-storage-rg.json @@ -0,0 +1,688 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "storageAccounts_saodmsaudev_name": { + "type": "String" + }, + "storageAccounts_saodmseudev_name": { + "type": "String" + }, + "storageAccounts_saodmsusdev_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "australiaeast", + "name": "[parameters('storageAccounts_saodmsaudev_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": false, + "allowCrossTenantReplication": true, + "allowSharedKeyAccess": true, + "defaultToOAuthAuthentication": false, + "dnsEndpointType": "Standard", + "encryption": { + "keySource": "Microsoft.Storage", + "requireInfrastructureEncryption": false, + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Allow", + "ipRules": [], + "virtualNetworkRules": [] + }, + "publicNetworkAccess": "Enabled", + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "northeurope", + "name": "[parameters('storageAccounts_saodmseudev_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": false, + "allowCrossTenantReplication": true, + "allowSharedKeyAccess": true, + "defaultToOAuthAuthentication": false, + "dnsEndpointType": "Standard", + "encryption": { + "keySource": "Microsoft.Storage", + "requireInfrastructureEncryption": false, + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Allow", + "ipRules": [], + "virtualNetworkRules": [] + }, + "publicNetworkAccess": "Enabled", + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "eastus", + "name": "[parameters('storageAccounts_saodmsusdev_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": false, + "allowCrossTenantReplication": true, + "allowSharedKeyAccess": true, + "defaultToOAuthAuthentication": false, + "dnsEndpointType": "Standard", + "encryption": { + "keySource": "Microsoft.Storage", + "requireInfrastructureEncryption": false, + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Allow", + "ipRules": [], + "virtualNetworkRules": [] + }, + "publicNetworkAccess": "Enabled", + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "tags": { + "Environment": "develop", + "Project": "OMDS" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaudev_name'), '/default')]", + "properties": { + "changeFeed": { + "enabled": false + }, + "containerDeleteRetentionPolicy": { + "enabled": false + }, + "cors": { + "corsRules": [ + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:8180" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 28800 + } + ] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "enabled": false + }, + "isVersioningEnabled": false, + "restorePolicy": { + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseudev_name'), '/default')]", + "properties": { + "changeFeed": { + "enabled": false + }, + "containerDeleteRetentionPolicy": { + "enabled": false + }, + "cors": { + "corsRules": [ + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:8180" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 28800 + } + ] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "enabled": false + }, + "isVersioningEnabled": false, + "restorePolicy": { + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default')]", + "properties": { + "changeFeed": { + "enabled": true + }, + "containerDeleteRetentionPolicy": { + "enabled": false + }, + "cors": { + "corsRules": [ + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:8180" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 2880 + } + ] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "enabled": false + }, + "isVersioningEnabled": true, + "restorePolicy": { + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaudev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 0, + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseudev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 0, + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 0, + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaudev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseudev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaudev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseudev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-1')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-11')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-12')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-13')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsaudev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaudev_name'), '/default/account-2')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmseudev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseudev_name'), '/default/account-2')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-2')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-3')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-300')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-6')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-8')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsaudev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaudev_name'), '/default/account-9')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmseudev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseudev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseudev_name'), '/default/account-9')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusdev_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusdev_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusdev_name'), '/default/account-9')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + } + ], + "variables": {} +} diff --git a/configurations/azure/maintenance-rg.json b/configurations/azure/maintenance-rg.json new file mode 100644 index 0000000..40751c4 --- /dev/null +++ b/configurations/azure/maintenance-rg.json @@ -0,0 +1,2766 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "bastionHosts_bas_odms_maintenance_name": { + "type": "String" + }, + "networkInterfaces_pep_odms_registry_maintenance_nic_name": { + "type": "String" + }, + "networkInterfaces_vm_odms_deploy_maintenance759_name": { + "type": "String" + }, + "networkInterfaces_vm_odms_maintenance600_name": { + "type": "String" + }, + "networkInterfaces_vm_odms_staging_maintenance158_name": { + "type": "String" + }, + "networkSecurityGroups_nsg_odms_bas_maintenance_name": { + "type": "String" + }, + "networkSecurityGroups_nsg_odms_deploy_maintenance_name": { + "type": "String" + }, + "networkSecurityGroups_nsg_odms_vm_maintenance_name": { + "type": "String" + }, + "privateDnsZones_privatelink_azurecr_io_name": { + "type": "String" + }, + "privateEndpoints_pep_odms_registry_maintenance_name": { + "type": "String" + }, + "publicIPAddresses_vm_odms_staging_maintenance_ip_name": { + "type": "String" + }, + "publicIPAddresses_vnet_odms_network_maintenance_ip_name": { + "type": "String" + }, + "registries_crOdmsRegistryMaintenance_name": { + "type": "String" + }, + "schedules_shutdown_computevm_vm_odms_maintenance_name": { + "type": "String" + }, + "schedules_shutdown_computevm_vm_odms_staging_maintenance_name": { + "type": "String" + }, + "sshPublicKeys_vm_odms_deploy_maintenance_key_0720_name": { + "type": "String" + }, + "storageAccounts_saodmscloudshell_name": { + "type": "String" + }, + "virtualMachines_vm_odms_deploy_maintenance_name": { + "type": "String" + }, + "virtualMachines_vm_odms_maintenance_name": { + "type": "String" + }, + "virtualMachines_vm_odms_staging_maintenance_name": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_dev_externalid": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_maintenance_name": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_stg_externalid": { + "type": "String" + }, + "webhooks_webhookOdmsDictationDev_serviceUri": { + "type": "SecureString" + }, + "webhooks_webhookOdmsDictationStg_serviceUri": { + "type": "SecureString" + } + }, + "resources": [ + { + "apiVersion": "2023-03-01", + "location": "japaneast", + "name": "[parameters('sshPublicKeys_vm_odms_deploy_maintenance_key_0720_name')]", + "properties": { + "publicKey": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQHikRMWS6PAEmjEAiYHgwnufRHsWDWxyIPYDr0RrHXzOdGT+7T3eCgZvuvggGZQkdssziqOLCa2BaA162091/o1JCta8fgfXwl4uFd/j5FNnXH9+f6I6ShwM3cKThd7FYUKZXD6OidudZyMYUNE49bv42GRG1vwNCPpoYF49dfyiWoFqYCd+Mtd5K6VPoA8d/n7o86eS2Ue33Z5HdyPP79ZJbrBquKrQBwCWFSyFkhC1rnaU+m2zMJ8M/+lf/W1cKsQJDMSfYzuu6CUdNHtJ6c+q8CNJJqbBX7QVc34AlR4vBc+dNMyGF+h6i6jU/eNToRrWZqEPfWvEaZQledmeITW5FAYaoCAlCW4r9u+iCKf3ifOMNDcaV+0Bxhni2mX8HrGzlzN3h7nxGzG0oGuvoTIxuAjq9+pY3tn3u2jcNUztEAL9x4Idg0uUom5dFxMN1K42KdttFKnhuWsKJMHe/o1tDPNrWnQ47Yr/jw9k4YTUkBfpHu8zBJS7uErhOyAk= generated-by-azure" + }, + "tags": { + "Project": "OMDS", + "environment": "maintenance", + "ms-resource-usage": "pipeline-self-hosted-agent" + }, + "type": "Microsoft.Compute/sshPublicKeys" + }, + { + "apiVersion": "2023-01-01-preview", + "location": "japaneast", + "name": "[parameters('registries_crOdmsRegistryMaintenance_name')]", + "properties": { + "adminUserEnabled": true, + "anonymousPullEnabled": false, + "dataEndpointEnabled": false, + "encryption": { + "status": "disabled" + }, + "networkRuleBypassOptions": "AzureServices", + "networkRuleSet": { + "defaultAction": "Deny", + "ipRules": [ + { + "action": "Allow", + "value": "175.177.42.28" + } + ] + }, + "policies": { + "azureADAuthenticationAsArmPolicy": { + "status": "enabled" + }, + "exportPolicy": { + "status": "enabled" + }, + "quarantinePolicy": { + "status": "disabled" + }, + "retentionPolicy": { + "days": 7, + "status": "disabled" + }, + "softDeletePolicy": { + "retentionDays": 7, + "status": "disabled" + }, + "trustPolicy": { + "status": "disabled", + "type": "Notary" + } + }, + "publicNetworkAccess": "Enabled", + "zoneRedundancy": "Disabled" + }, + "sku": { + "name": "Premium", + "tier": "Premium" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.ContainerRegistry/registries" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name')]", + "properties": { + "securityRules": [ + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowGatewayManagerHTTPSInbound')]", + "name": "AllowGatewayManagerHTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 100, + "protocol": "TCP", + "sourceAddressPrefix": "GatewayManager", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowAzureLoadBalancerHTTPSInbound')]", + "name": "AllowAzureLoadBalancerHTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 110, + "protocol": "TCP", + "sourceAddressPrefix": "AzureLoadBalancer", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowBastionHostCommunicationInbound')]", + "name": "AllowBastionHostCommunicationInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "VirtualNetwork", + "destinationAddressPrefixes": [], + "destinationPortRanges": [ + "8080", + "5701" + ], + "direction": "Inbound", + "priority": 120, + "protocol": "*", + "sourceAddressPrefix": "VirtualNetwork", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'DenyAnyCustomAnyInbound')]", + "name": "DenyAnyCustomAnyInbound", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowSSH-RDPOutbound')]", + "name": "AllowSSH-RDPOutbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "VirtualNetwork", + "destinationAddressPrefixes": [], + "destinationPortRanges": [ + "22", + "3389" + ], + "direction": "Outbound", + "priority": 100, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowAzureCloudHTTPSOutbound')]", + "name": "AllowAzureCloudHTTPSOutbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "AzureCloud", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 110, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowSessionInfo')]", + "name": "AllowSessionInfo", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "Internet", + "destinationAddressPrefixes": [], + "destinationPortRange": "80", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 120, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowBastionHostCommunicationOutBound')]", + "name": "AllowBastionHostCommunicationOutBound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "VirtualNetwork", + "destinationAddressPrefixes": [], + "destinationPortRanges": [ + "8080", + "5701" + ], + "direction": "Outbound", + "priority": 130, + "protocol": "*", + "sourceAddressPrefix": "VirtualNetwork", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddress-saito.k-HTTPSInbound')]", + "name": "AllowMyIpAddress-saito.k-HTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 130, + "protocol": "TCP", + "sourceAddressPrefix": "175.177.42.28", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddress-okuzawa-HTTPSInbound')]", + "name": "AllowMyIpAddress-okuzawa-HTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 140, + "protocol": "TCP", + "sourceAddressPrefix": "211.125.140.83", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddress-fukunaga-HTTPSInbound')]", + "name": "AllowMyIpAddress-fukunaga-HTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 150, + "protocol": "TCP", + "sourceAddressPrefix": "221.252.90.222", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddress-makabe-HTTPSInbound')]", + "name": "AllowMyIpAddress-makabe-HTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 160, + "protocol": "TCP", + "sourceAddressPrefixes": [ + "60.97.55.122", + "118.238.231.215" + ], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddress-oura-HTTPSInbound')]", + "name": "AllowMyIpAddress-oura-HTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 200, + "protocol": "TCP", + "sourceAddressPrefix": "60.65.231.128", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddressHTTPSInbound-sunamoto')]", + "name": "AllowMyIpAddressHTTPSInbound-sunamoto", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 201, + "protocol": "TCP", + "sourceAddressPrefix": "122.210.18.114", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddress-maruyama-HTTPSInbound')]", + "name": "AllowMyIpAddress-maruyama-HTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 202, + "protocol": "TCP", + "sourceAddressPrefix": "61.87.49.72", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddress-yumoto-HTTPSInbound')]", + "name": "AllowMyIpAddress-yumoto-HTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 131, + "protocol": "TCP", + "sourceAddressPrefix": "153.210.243.72", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), 'AllowMyIpAddress-iwata-HTTPSInbound')]", + "name": "AllowMyIpAddress-iwata-HTTPSInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 203, + "protocol": "TCP", + "sourceAddressPrefix": "126.74.195.84", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + } + ] + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkSecurityGroups" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('networkSecurityGroups_nsg_odms_deploy_maintenance_name')]", + "properties": { + "securityRules": [ + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_deploy_maintenance_name'), 'DenyAllInbound')]", + "name": "DenyAllInbound", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + } + ] + }, + "tags": { + "Project": "OMDS", + "environment": "maintenance", + "ms-resource-usage": "pipeline-self-hosted-agent" + }, + "type": "Microsoft.Network/networkSecurityGroups" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name')]", + "properties": { + "securityRules": [ + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowCidrBlockRDPInbound')]", + "name": "AllowCidrBlockRDPInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3389", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1001, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.1.0/26", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'DenyAnyCustomAnyInbound')]", + "name": "DenyAnyCustomAnyInbound", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'DenyCidrBlockCustom4443Outbound')]", + "name": "DenyCidrBlockCustom4443Outbound", + "properties": { + "access": "Deny", + "description": "stagingݑ䂩devւ̃ANZX֎~", + "destinationAddressPrefix": "10.1.0.10", + "destinationAddressPrefixes": [], + "destinationPortRange": "4443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 100, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.5", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'DenyCidrBlockCustom4443Outbound_DevToStg')]", + "name": "DenyCidrBlockCustom4443Outbound_DevToStg", + "properties": { + "access": "Deny", + "description": "devݑ䂩stagingւ̃ANZX֎~", + "destinationAddressPrefix": "10.2.0.10", + "destinationAddressPrefixes": [], + "destinationPortRange": "4443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 101, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowDevAppOutbound')]", + "name": "AllowDevAppOutbound", + "properties": { + "access": "Allow", + "description": "Devݑ䂩Devւ̃ANZX", + "destinationAddressPrefix": "10.1.0.10", + "destinationAddressPrefixes": [], + "destinationPortRange": "4443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 102, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowStgAppOutbound')]", + "name": "AllowStgAppOutbound", + "properties": { + "access": "Allow", + "description": "STGݑ䂩STGւ̃ANZX", + "destinationAddressPrefix": "10.2.0.10", + "destinationAddressPrefixes": [], + "destinationPortRange": "4443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 103, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.5", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowDevHTTPSOutbound')]", + "name": "AllowDevHTTPSOutbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "AzureActiveDirectory", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 106, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowStgHTTPSOutbound')]", + "name": "AllowStgHTTPSOutbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "AzureActiveDirectory", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 107, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.5", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowAnyMySQLOutbound')]", + "name": "AllowAnyMySQLOutbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 108, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowStorageAccountEastUSOutbound')]", + "name": "AllowStorageAccountEastUSOutbound", + "properties": { + "access": "Allow", + "description": "USpStorageAccountւ̃ANZX", + "destinationAddressPrefix": "Storage.EastUS", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 109, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowStorageAccountNorthEuropeOutbound')]", + "name": "AllowStorageAccountNorthEuropeOutbound", + "properties": { + "access": "Allow", + "description": "EUpStorageAccountւ̃ANZX", + "destinationAddressPrefix": "Storage.NorthEurope", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 110, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'AllowStorageAccountAustraliaEastOutbound')]", + "name": "AllowStorageAccountAustraliaEastOutbound", + "properties": { + "access": "Allow", + "description": "AUpStorageAccountւ̃ANZX", + "destinationAddressPrefix": "Storage.AustraliaEast", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 111, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), 'DenyAllOutbound')]", + "name": "DenyAllOutbound", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + } + ] + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkSecurityGroups" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_azurecr_io_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 3, + "numberOfVirtualNetworkLinks": 3, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('publicIPAddresses_vm_odms_staging_maintenance_ip_name')]", + "properties": { + "idleTimeoutInMinutes": 4, + "ipAddress": "20.243.50.100", + "ipTags": [], + "publicIPAddressVersion": "IPv4", + "publicIPAllocationMethod": "Static" + }, + "sku": { + "name": "Standard", + "tier": "Regional" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/publicIPAddresses" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('publicIPAddresses_vnet_odms_network_maintenance_ip_name')]", + "properties": { + "idleTimeoutInMinutes": 4, + "ipAddress": "20.63.184.157", + "ipTags": [], + "publicIPAddressVersion": "IPv4", + "publicIPAllocationMethod": "Static" + }, + "sku": { + "name": "Standard", + "tier": "Regional" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/publicIPAddresses" + }, + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "japaneast", + "name": "[parameters('storageAccounts_saodmscloudshell_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": false, + "encryption": { + "keySource": "Microsoft.Storage", + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Allow", + "ipRules": [], + "virtualNetworkRules": [] + }, + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "tags": { + "ms-resource-usage": "azure-cloud-shell" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2023-03-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_deploy_maintenance759_name'))]" + ], + "location": "japaneast", + "name": "[parameters('virtualMachines_vm_odms_deploy_maintenance_name')]", + "properties": { + "diagnosticsProfile": { + "bootDiagnostics": { + "enabled": true + } + }, + "hardwareProfile": { + "vmSize": "Standard_B2s" + }, + "networkProfile": { + "networkInterfaces": [ + { + "id": "[resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_deploy_maintenance759_name'))]", + "properties": { + "deleteOption": "Detach" + } + } + ] + }, + "osProfile": { + "adminUsername": "azureuser", + "allowExtensionOperations": true, + "computerName": "[parameters('virtualMachines_vm_odms_deploy_maintenance_name')]", + "linuxConfiguration": { + "disablePasswordAuthentication": true, + "enableVMAgentPlatformUpdates": false, + "patchSettings": { + "assessmentMode": "ImageDefault", + "patchMode": "ImageDefault" + }, + "provisionVMAgent": true, + "ssh": { + "publicKeys": [ + { + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQHikRMWS6PAEmjEAiYHgwnufRHsWDWxyIPYDr0RrHXzOdGT+7T3eCgZvuvggGZQkdssziqOLCa2BaA162091/o1JCta8fgfXwl4uFd/j5FNnXH9+f6I6ShwM3cKThd7FYUKZXD6OidudZyMYUNE49bv42GRG1vwNCPpoYF49dfyiWoFqYCd+Mtd5K6VPoA8d/n7o86eS2Ue33Z5HdyPP79ZJbrBquKrQBwCWFSyFkhC1rnaU+m2zMJ8M/+lf/W1cKsQJDMSfYzuu6CUdNHtJ6c+q8CNJJqbBX7QVc34AlR4vBc+dNMyGF+h6i6jU/eNToRrWZqEPfWvEaZQledmeITW5FAYaoCAlCW4r9u+iCKf3ifOMNDcaV+0Bxhni2mX8HrGzlzN3h7nxGzG0oGuvoTIxuAjq9+pY3tn3u2jcNUztEAL9x4Idg0uUom5dFxMN1K42KdttFKnhuWsKJMHe/o1tDPNrWnQ47Yr/jw9k4YTUkBfpHu8zBJS7uErhOyAk= generated-by-azure", + "path": "/home/azureuser/.ssh/authorized_keys" + } + ] + } + }, + "requireGuestProvisionSignal": true, + "secrets": [] + }, + "securityProfile": { + "securityType": "TrustedLaunch", + "uefiSettings": { + "secureBootEnabled": true, + "vTpmEnabled": true + } + }, + "storageProfile": { + "dataDisks": [], + "diskControllerType": "SCSI", + "imageReference": { + "offer": "0001-com-ubuntu-server-focal", + "publisher": "canonical", + "sku": "20_04-lts-gen2", + "version": "latest" + }, + "osDisk": { + "caching": "ReadWrite", + "createOption": "FromImage", + "deleteOption": "Delete", + "diskSizeGB": 30, + "managedDisk": { + "id": "[resourceId('Microsoft.Compute/disks', concat(parameters('virtualMachines_vm_odms_deploy_maintenance_name'), '_disk1_1cbaf8f9bfdf4548902316f7be8189ed'))]", + "storageAccountType": "Premium_LRS" + }, + "name": "[concat(parameters('virtualMachines_vm_odms_deploy_maintenance_name'), '_disk1_1cbaf8f9bfdf4548902316f7be8189ed')]", + "osType": "Linux" + } + } + }, + "tags": { + "Project": "OMDS", + "environment": "maintenance", + "ms-resource-usage": "pipeline-self-hosted-agent" + }, + "type": "Microsoft.Compute/virtualMachines" + }, + { + "apiVersion": "2023-03-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_maintenance600_name'))]" + ], + "location": "japaneast", + "name": "[parameters('virtualMachines_vm_odms_maintenance_name')]", + "properties": { + "diagnosticsProfile": { + "bootDiagnostics": { + "enabled": true + } + }, + "hardwareProfile": { + "vmSize": "Standard_B2s" + }, + "networkProfile": { + "networkInterfaces": [ + { + "id": "[resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_maintenance600_name'))]", + "properties": { + "deleteOption": "Detach" + } + } + ] + }, + "osProfile": { + "adminUsername": "odmsAdmin", + "allowExtensionOperations": true, + "computerName": "vm-odms-mainten", + "requireGuestProvisionSignal": true, + "secrets": [], + "windowsConfiguration": { + "enableAutomaticUpdates": true, + "enableVMAgentPlatformUpdates": false, + "patchSettings": { + "assessmentMode": "ImageDefault", + "enableHotpatching": false, + "patchMode": "AutomaticByOS" + }, + "provisionVMAgent": true + } + }, + "storageProfile": { + "dataDisks": [], + "diskControllerType": "SCSI", + "imageReference": { + "offer": "WindowsServer", + "publisher": "MicrosoftWindowsServer", + "sku": "2022-datacenter-azure-edition", + "version": "latest" + }, + "osDisk": { + "caching": "ReadWrite", + "createOption": "FromImage", + "deleteOption": "Delete", + "diskSizeGB": 127, + "managedDisk": { + "id": "[resourceId('Microsoft.Compute/disks', concat(parameters('virtualMachines_vm_odms_maintenance_name'), '_OsDisk_1_fb725b02a0b34e4c997367611eeb9f2f'))]", + "storageAccountType": "Premium_LRS" + }, + "name": "[concat(parameters('virtualMachines_vm_odms_maintenance_name'), '_OsDisk_1_fb725b02a0b34e4c997367611eeb9f2f')]", + "osType": "Windows" + } + } + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Compute/virtualMachines" + }, + { + "apiVersion": "2023-03-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_staging_maintenance158_name'))]" + ], + "location": "japaneast", + "name": "[parameters('virtualMachines_vm_odms_staging_maintenance_name')]", + "properties": { + "diagnosticsProfile": { + "bootDiagnostics": { + "enabled": true + } + }, + "hardwareProfile": { + "vmSize": "Standard_B2s" + }, + "networkProfile": { + "networkInterfaces": [ + { + "id": "[resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_staging_maintenance158_name'))]", + "properties": { + "deleteOption": "Delete" + } + } + ] + }, + "osProfile": { + "adminUsername": "odmsAdmin", + "allowExtensionOperations": true, + "computerName": "vm-odms-staging", + "requireGuestProvisionSignal": true, + "secrets": [], + "windowsConfiguration": { + "enableAutomaticUpdates": false, + "enableVMAgentPlatformUpdates": false, + "patchSettings": { + "assessmentMode": "ImageDefault", + "enableHotpatching": false, + "patchMode": "Manual" + }, + "provisionVMAgent": true + } + }, + "securityProfile": { + "securityType": "TrustedLaunch", + "uefiSettings": { + "secureBootEnabled": false, + "vTpmEnabled": false + } + }, + "storageProfile": { + "dataDisks": [], + "diskControllerType": "SCSI", + "imageReference": { + "offer": "WindowsServer", + "publisher": "MicrosoftWindowsServer", + "sku": "2022-datacenter-azure-edition", + "version": "latest" + }, + "osDisk": { + "caching": "ReadWrite", + "createOption": "FromImage", + "deleteOption": "Delete", + "managedDisk": { + "id": "[resourceId('Microsoft.Compute/disks', concat(parameters('virtualMachines_vm_odms_staging_maintenance_name'), '_OsDisk_1_903a7540b5a64475b512aedc10487661'))]" + }, + "name": "[concat(parameters('virtualMachines_vm_odms_staging_maintenance_name'), '_OsDisk_1_903a7540b5a64475b512aedc10487661')]", + "osType": "Windows" + } + } + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Compute/virtualMachines" + }, + { + "apiVersion": "2023-01-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.ContainerRegistry/registries', parameters('registries_crOdmsRegistryMaintenance_name'))]" + ], + "name": "[concat(parameters('registries_crOdmsRegistryMaintenance_name'), '/_repositories_admin')]", + "properties": { + "actions": [ + "repositories/*/metadata/read", + "repositories/*/metadata/write", + "repositories/*/content/read", + "repositories/*/content/write", + "repositories/*/content/delete" + ], + "description": "Can perform all read, write and delete operations on the registry" + }, + "type": "Microsoft.ContainerRegistry/registries/scopeMaps" + }, + { + "apiVersion": "2023-01-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.ContainerRegistry/registries', parameters('registries_crOdmsRegistryMaintenance_name'))]" + ], + "name": "[concat(parameters('registries_crOdmsRegistryMaintenance_name'), '/_repositories_pull')]", + "properties": { + "actions": [ + "repositories/*/content/read" + ], + "description": "Can pull any repository of the registry" + }, + "type": "Microsoft.ContainerRegistry/registries/scopeMaps" + }, + { + "apiVersion": "2023-01-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.ContainerRegistry/registries', parameters('registries_crOdmsRegistryMaintenance_name'))]" + ], + "name": "[concat(parameters('registries_crOdmsRegistryMaintenance_name'), '/_repositories_push')]", + "properties": { + "actions": [ + "repositories/*/content/read", + "repositories/*/content/write" + ], + "description": "Can push to any repository of the registry" + }, + "type": "Microsoft.ContainerRegistry/registries/scopeMaps" + }, + { + "apiVersion": "2023-01-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.ContainerRegistry/registries', parameters('registries_crOdmsRegistryMaintenance_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('registries_crOdmsRegistryMaintenance_name'), '/webhookOdmsDictationDev')]", + "properties": { + "actions": [ + "push" + ], + "scope": "odmscloud/dictation:latest", + "serviceUri": "[parameters('webhooks_webhookOdmsDictationDev_serviceUri')]", + "status": "enabled" + }, + "type": "Microsoft.ContainerRegistry/registries/webhooks" + }, + { + "apiVersion": "2023-01-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.ContainerRegistry/registries', parameters('registries_crOdmsRegistryMaintenance_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('registries_crOdmsRegistryMaintenance_name'), '/webhookOdmsDictationStg')]", + "properties": { + "actions": [ + "push" + ], + "scope": "odmscloud/staging/dictation:latest", + "serviceUri": "[parameters('webhooks_webhookOdmsDictationStg_serviceUri')]", + "status": "enabled" + }, + "type": "Microsoft.ContainerRegistry/registries/webhooks" + }, + { + "apiVersion": "2018-09-15", + "dependsOn": [ + "[resourceId('Microsoft.Compute/virtualMachines', parameters('virtualMachines_vm_odms_maintenance_name'))]" + ], + "location": "japaneast", + "name": "[parameters('schedules_shutdown_computevm_vm_odms_maintenance_name')]", + "properties": { + "dailyRecurrence": { + "time": "1900" + }, + "notificationSettings": { + "notificationLocale": "ja", + "status": "Disabled", + "timeInMinutes": 30 + }, + "status": "Enabled", + "targetResourceId": "[resourceId('Microsoft.Compute/virtualMachines', parameters('virtualMachines_vm_odms_maintenance_name'))]", + "taskType": "ComputeVmShutdownTask", + "timeZoneId": "Tokyo Standard Time" + }, + "type": "microsoft.devtestlab/schedules" + }, + { + "apiVersion": "2018-09-15", + "dependsOn": [ + "[resourceId('Microsoft.Compute/virtualMachines', parameters('virtualMachines_vm_odms_staging_maintenance_name'))]" + ], + "location": "japaneast", + "name": "[parameters('schedules_shutdown_computevm_vm_odms_staging_maintenance_name')]", + "properties": { + "dailyRecurrence": { + "time": "1900" + }, + "notificationSettings": { + "notificationLocale": "ja", + "status": "Disabled", + "timeInMinutes": 30 + }, + "status": "Enabled", + "targetResourceId": "[resourceId('Microsoft.Compute/virtualMachines', parameters('virtualMachines_vm_odms_staging_maintenance_name'))]", + "taskType": "ComputeVmShutdownTask", + "timeZoneId": "Tokyo Standard Time" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "microsoft.devtestlab/schedules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-acr-maintenance')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_pep_odms_registry_maintenance_nic_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"5846ac61-2981-4606-9b38-994c8266be61\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_registry_maintenance_nic_name')), '/ipConfigurations/privateEndpointIpConfig.e837d736-6ca6-475e-ba00-e60830a12973')]", + "name": "privateEndpointIpConfig.e837d736-6ca6-475e-ba00-e60830a12973", + "properties": { + "primary": true, + "privateIPAddress": "10.0.0.4", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "crodmsregistrymaintenance.japaneast.data.azurecr.io" + ], + "groupId": "registry", + "requiredMemberName": "registry_data_japaneast" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-acr-maintenance')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + }, + { + "etag": "W/\"5846ac61-2981-4606-9b38-994c8266be61\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_registry_maintenance_nic_name')), '/ipConfigurations/privateEndpointIpConfig.6f95d8a1-fca5-4a54-8d86-5d660a9ae193')]", + "name": "privateEndpointIpConfig.6f95d8a1-fca5-4a54-8d86-5d660a9ae193", + "properties": { + "primary": false, + "privateIPAddress": "10.0.0.5", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "crodmsregistrymaintenance.azurecr.io" + ], + "groupId": "registry", + "requiredMemberName": "registry" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-acr-maintenance')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-deploy-maintenance')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_vm_odms_deploy_maintenance759_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"8b476f19-5be7-4912-b266-c571f58f54d8\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_deploy_maintenance759_name')), '/ipConfigurations/ipconfig1')]", + "name": "ipconfig1", + "properties": { + "primary": true, + "privateIPAddress": "10.0.4.4", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-deploy-maintenance')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "tags": { + "Project": "OMDS", + "environment": "maintenance", + "ms-resource-usage": "pipeline-self-hosted-agent" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-vm-maintenance')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_vm_odms_maintenance600_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"9b4f72e2-4c0e-49c9-b61d-5850d51b00fe\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_maintenance600_name')), '/ipConfigurations/ipconfig1')]", + "name": "ipconfig1", + "properties": { + "primary": true, + "privateIPAddress": "10.0.2.4", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-vm-maintenance')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-vm-maintenance')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_vm_odms_staging_maintenance158_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"536cf40c-df06-4ea0-a2e4-253c4c420070\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_vm_odms_staging_maintenance158_name')), '/ipConfigurations/ipconfig1')]", + "name": "ipconfig1", + "properties": { + "primary": true, + "privateIPAddress": "10.0.2.5", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-vm-maintenance')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowAnyMySQLOutbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 108, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowAzureCloudHTTPSOutbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "AzureCloud", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 110, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowAzureLoadBalancerHTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 110, + "protocol": "TCP", + "sourceAddressPrefix": "AzureLoadBalancer", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowBastionHostCommunicationInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "VirtualNetwork", + "destinationAddressPrefixes": [], + "destinationPortRanges": [ + "8080", + "5701" + ], + "direction": "Inbound", + "priority": 120, + "protocol": "*", + "sourceAddressPrefix": "VirtualNetwork", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowBastionHostCommunicationOutBound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "VirtualNetwork", + "destinationAddressPrefixes": [], + "destinationPortRanges": [ + "8080", + "5701" + ], + "direction": "Outbound", + "priority": 130, + "protocol": "*", + "sourceAddressPrefix": "VirtualNetwork", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowCidrBlockRDPInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3389", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1001, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.1.0/26", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowDevAppOutbound')]", + "properties": { + "access": "Allow", + "description": "Devݑ䂩Devւ̃ANZX", + "destinationAddressPrefix": "10.1.0.10", + "destinationAddressPrefixes": [], + "destinationPortRange": "4443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 102, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowDevHTTPSOutbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "AzureActiveDirectory", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 106, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowGatewayManagerHTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 100, + "protocol": "TCP", + "sourceAddressPrefix": "GatewayManager", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddress-fukunaga-HTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 150, + "protocol": "TCP", + "sourceAddressPrefix": "221.252.90.222", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddressHTTPSInbound-sunamoto')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 201, + "protocol": "TCP", + "sourceAddressPrefix": "122.210.18.114", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddress-iwata-HTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 203, + "protocol": "TCP", + "sourceAddressPrefix": "126.74.195.84", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddress-makabe-HTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 160, + "protocol": "TCP", + "sourceAddressPrefixes": [ + "60.97.55.122", + "118.238.231.215" + ], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddress-maruyama-HTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 202, + "protocol": "TCP", + "sourceAddressPrefix": "61.87.49.72", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddress-okuzawa-HTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 140, + "protocol": "TCP", + "sourceAddressPrefix": "211.125.140.83", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddress-oura-HTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 200, + "protocol": "TCP", + "sourceAddressPrefix": "60.65.231.128", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddress-saito.k-HTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 130, + "protocol": "TCP", + "sourceAddressPrefix": "175.177.42.28", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowMyIpAddress-yumoto-HTTPSInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 131, + "protocol": "TCP", + "sourceAddressPrefix": "153.210.243.72", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowSessionInfo')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "Internet", + "destinationAddressPrefixes": [], + "destinationPortRange": "80", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 120, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/AllowSSH-RDPOutbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "VirtualNetwork", + "destinationAddressPrefixes": [], + "destinationPortRanges": [ + "22", + "3389" + ], + "direction": "Outbound", + "priority": 100, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowStgAppOutbound')]", + "properties": { + "access": "Allow", + "description": "STGݑ䂩STGւ̃ANZX", + "destinationAddressPrefix": "10.2.0.10", + "destinationAddressPrefixes": [], + "destinationPortRange": "4443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 103, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.5", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowStgHTTPSOutbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "AzureActiveDirectory", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 107, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.5", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowStorageAccountAustraliaEastOutbound')]", + "properties": { + "access": "Allow", + "description": "AUpStorageAccountւ̃ANZX", + "destinationAddressPrefix": "Storage.AustraliaEast", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 111, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowStorageAccountEastUSOutbound')]", + "properties": { + "access": "Allow", + "description": "USpStorageAccountւ̃ANZX", + "destinationAddressPrefix": "Storage.EastUS", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 109, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/AllowStorageAccountNorthEuropeOutbound')]", + "properties": { + "access": "Allow", + "description": "EUpStorageAccountւ̃ANZX", + "destinationAddressPrefix": "Storage.NorthEurope", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 110, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_deploy_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_deploy_maintenance_name'), '/DenyAllInbound')]", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/DenyAllOutbound')]", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'), '/DenyAnyCustomAnyInbound')]", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/DenyAnyCustomAnyInbound')]", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/DenyCidrBlockCustom4443Outbound')]", + "properties": { + "access": "Deny", + "description": "stagingݑ䂩devւ̃ANZX֎~", + "destinationAddressPrefix": "10.1.0.10", + "destinationAddressPrefixes": [], + "destinationPortRange": "4443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 100, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.5", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'), '/DenyCidrBlockCustom4443Outbound_DevToStg')]", + "properties": { + "access": "Deny", + "description": "devݑ䂩stagingւ̃ANZX֎~", + "destinationAddressPrefix": "10.2.0.10", + "destinationAddressPrefixes": [], + "destinationPortRange": "4443", + "destinationPortRanges": [], + "direction": "Outbound", + "priority": 101, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurecr_io_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurecr_io_name'), '/crodmsregistrymaintenance')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.0.0.5" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-registry-maintenance with resource guid e9468193-6a2f-4a20-8770-b2de1c5454d2" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurecr_io_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurecr_io_name'), '/crodmsregistrymaintenance.japaneast.data')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.0.0.4" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-registry-maintenance with resource guid e9468193-6a2f-4a20-8770-b2de1c5454d2" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurecr_io_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurecr_io_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurecr_io_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_azurecr_io_name'), '/link-odms-vnet-dev')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_dev_externalid')]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurecr_io_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_azurecr_io_name'), '/link-odms-vnet-stg')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_stg_externalid')]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_maintenance_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_maintenance_name'), '/snet-odms-acr-maintenance')]", + "properties": { + "addressPrefix": "10.0.0.0/24", + "delegations": [], + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_maintenance_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_maintenance_name'), '/peer-odms-dev-maintenance')]", + "properties": { + "allowForwardedTraffic": true, + "allowGatewayTransit": false, + "allowVirtualNetworkAccess": true, + "doNotVerifyRemoteGateways": false, + "peeringState": "Connected", + "peeringSyncLevel": "FullyInSync", + "remoteAddressSpace": { + "addressPrefixes": [ + "10.1.0.0/16" + ] + }, + "remoteVirtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_dev_externalid')]" + }, + "remoteVirtualNetworkAddressSpace": { + "addressPrefixes": [ + "10.1.0.0/16" + ] + }, + "useRemoteGateways": false + }, + "type": "Microsoft.Network/virtualNetworks/virtualNetworkPeerings" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_maintenance_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_maintenance_name'), '/peer-odms-stg-maintenance')]", + "properties": { + "allowForwardedTraffic": true, + "allowGatewayTransit": false, + "allowVirtualNetworkAccess": true, + "doNotVerifyRemoteGateways": false, + "peeringState": "Connected", + "peeringSyncLevel": "FullyInSync", + "remoteAddressSpace": { + "addressPrefixes": [ + "10.2.0.0/16" + ] + }, + "remoteVirtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_stg_externalid')]" + }, + "remoteVirtualNetworkAddressSpace": { + "addressPrefixes": [ + "10.2.0.0/16" + ] + }, + "useRemoteGateways": false + }, + "type": "Microsoft.Network/virtualNetworks/virtualNetworkPeerings" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmscloudshell_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmscloudshell_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmscloudshell_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmscloudshell_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 7, + "enabled": true + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmscloudshell_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmscloudshell_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmscloudshell_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmscloudshell_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2023-01-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.ContainerRegistry/registries', parameters('registries_crOdmsRegistryMaintenance_name'))]", + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_registry_maintenance_name'))]" + ], + "name": "[concat(parameters('registries_crOdmsRegistryMaintenance_name'), '/', parameters('registries_crOdmsRegistryMaintenance_name'), '.2929ec3b09904ec0ac913ec80e26fe7a')]", + "properties": { + "privateEndpoint": { + "id": "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_registry_maintenance_name'))]" + }, + "privateLinkServiceConnectionState": { + "description": "Auto-Approved", + "status": "Approved" + } + }, + "type": "Microsoft.ContainerRegistry/registries/privateEndpointConnections" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/publicIPAddresses', parameters('publicIPAddresses_vnet_odms_network_maintenance_ip_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'AzureBastionSubnet')]" + ], + "location": "japaneast", + "name": "[parameters('bastionHosts_bas_odms_maintenance_name')]", + "properties": { + "disableCopyPaste": false, + "dnsName": "bst-cd02e9dc-3e4a-423f-b77e-46b479c9b14d.bastion.azure.com", + "enableIpConnect": false, + "enableKerberos": false, + "enableShareableLink": false, + "enableTunneling": true, + "ipConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/bastionHosts', parameters('bastionHosts_bas_odms_maintenance_name')), '/bastionHostIpConfigurations/IpConf')]", + "name": "IpConf", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "publicIPAddress": { + "id": "[resourceId('Microsoft.Network/publicIPAddresses', parameters('publicIPAddresses_vnet_odms_network_maintenance_ip_name'))]" + }, + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'AzureBastionSubnet')]" + } + } + } + ], + "scaleUnits": 3 + }, + "sku": { + "name": "Standard" + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/bastionHosts" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurecr_io_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_maintenance_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_azurecr_io_name'), '/e3fkm7ajqovu6')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_maintenance_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.ContainerRegistry/registries', parameters('registries_crOdmsRegistryMaintenance_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-acr-maintenance')]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_pep_odms_registry_maintenance_name')]", + "properties": { + "customDnsConfigs": [], + "customNetworkInterfaceName": "[concat(parameters('privateEndpoints_pep_odms_registry_maintenance_name'), '-nic')]", + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_registry_maintenance_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_pep_odms_registry_maintenance_name')))]", + "name": "[parameters('privateEndpoints_pep_odms_registry_maintenance_name')]", + "properties": { + "groupIds": [ + "registry" + ], + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "description": "Auto-Approved", + "status": "Approved" + }, + "privateLinkServiceId": "[resourceId('Microsoft.ContainerRegistry/registries', parameters('registries_crOdmsRegistryMaintenance_name'))]" + } + } + ], + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-acr-maintenance')]" + } + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_registry_maintenance_name'))]", + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurecr_io_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_pep_odms_registry_maintenance_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-azurecr-io", + "properties": { + "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurecr_io_name'))]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_maintenance_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_maintenance_name'), '/AzureBastionSubnet')]", + "properties": { + "addressPrefix": "10.0.1.0/26", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_maintenance_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_deploy_maintenance_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_maintenance_name'), '/snet-odms-deploy-maintenance')]", + "properties": { + "addressPrefix": "10.0.4.0/24", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_deploy_maintenance_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_maintenance_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_maintenance_name'), '/snet-odms-vm-maintenance')]", + "properties": { + "addressPrefix": "10.0.2.0/24", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/fileServices', parameters('storageAccounts_saodmscloudshell_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmscloudshell_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmscloudshell_name'), '/default/sfodmscloudshell')]", + "properties": { + "accessTier": "TransactionOptimized", + "enabledProtocols": "SMB", + "shareQuota": 6 + }, + "type": "Microsoft.Storage/storageAccounts/fileServices/shares" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_deploy_maintenance_name'))]" + ], + "location": "japaneast", + "name": "[parameters('virtualNetworks_vnet_odms_network_maintenance_name')]", + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "enableDdosProtection": false, + "subnets": [ + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-acr-maintenance')]", + "name": "snet-odms-acr-maintenance", + "properties": { + "addressPrefix": "10.0.0.0/24", + "delegations": [], + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'AzureBastionSubnet')]", + "name": "AzureBastionSubnet", + "properties": { + "addressPrefix": "10.0.1.0/26", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_bas_maintenance_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-vm-maintenance')]", + "name": "snet-odms-vm-maintenance", + "properties": { + "addressPrefix": "10.0.2.0/24", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_vm_maintenance_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'snet-odms-deploy-maintenance')]", + "name": "snet-odms-deploy-maintenance", + "properties": { + "addressPrefix": "10.0.4.0/24", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_deploy_maintenance_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + } + ], + "virtualNetworkPeerings": [ + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/virtualNetworkPeerings', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'peer-odms-dev-maintenance')]", + "name": "peer-odms-dev-maintenance", + "properties": { + "allowForwardedTraffic": true, + "allowGatewayTransit": false, + "allowVirtualNetworkAccess": true, + "doNotVerifyRemoteGateways": false, + "peeringState": "Connected", + "peeringSyncLevel": "FullyInSync", + "remoteAddressSpace": { + "addressPrefixes": [ + "10.1.0.0/16" + ] + }, + "remoteVirtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_dev_externalid')]" + }, + "remoteVirtualNetworkAddressSpace": { + "addressPrefixes": [ + "10.1.0.0/16" + ] + }, + "useRemoteGateways": false + }, + "type": "Microsoft.Network/virtualNetworks/virtualNetworkPeerings" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/virtualNetworkPeerings', parameters('virtualNetworks_vnet_odms_network_maintenance_name'), 'peer-odms-stg-maintenance')]", + "name": "peer-odms-stg-maintenance", + "properties": { + "allowForwardedTraffic": true, + "allowGatewayTransit": false, + "allowVirtualNetworkAccess": true, + "doNotVerifyRemoteGateways": false, + "peeringState": "Connected", + "peeringSyncLevel": "FullyInSync", + "remoteAddressSpace": { + "addressPrefixes": [ + "10.2.0.0/16" + ] + }, + "remoteVirtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_stg_externalid')]" + }, + "remoteVirtualNetworkAddressSpace": { + "addressPrefixes": [ + "10.2.0.0/16" + ] + }, + "useRemoteGateways": false + }, + "type": "Microsoft.Network/virtualNetworks/virtualNetworkPeerings" + } + ] + }, + "tags": { + "Environment": "maintenance", + "Project": "OMDS" + }, + "type": "Microsoft.Network/virtualNetworks" + } + ], + "variables": {} +} diff --git a/configurations/azure/shared-sendGrid-rg.json b/configurations/azure/shared-sendGrid-rg.json new file mode 100644 index 0000000..01121a8 --- /dev/null +++ b/configurations/azure/shared-sendGrid-rg.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "resources": [], + "variables": {} +} diff --git a/configurations/azure/shared-template-rg.json b/configurations/azure/shared-template-rg.json new file mode 100644 index 0000000..6e3d753 --- /dev/null +++ b/configurations/azure/shared-template-rg.json @@ -0,0 +1,104 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "templateSpecs_tem_network_name": { + "type": "String" + }, + "templateSpecs_temp_storage_account_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2022-02-01", + "location": "japaneast", + "name": "[parameters('templateSpecs_tem_network_name')]", + "properties": {}, + "type": "Microsoft.Resources/templateSpecs" + }, + { + "apiVersion": "2022-02-01", + "location": "japaneast", + "name": "[parameters('templateSpecs_temp_storage_account_name')]", + "properties": {}, + "tags": { + "ms-resource-usage": "azure-storage-account" + }, + "type": "Microsoft.Resources/templateSpecs" + }, + { + "apiVersion": "2022-02-01", + "dependsOn": [ + "[resourceId('Microsoft.Resources/templateSpecs', parameters('templateSpecs_tem_network_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('templateSpecs_tem_network_name'), '/1.0')]", + "properties": { + "mainTemplate": {} + }, + "type": "Microsoft.Resources/templateSpecs/versions" + }, + { + "apiVersion": "2022-02-01", + "dependsOn": [ + "[resourceId('Microsoft.Resources/templateSpecs', parameters('templateSpecs_temp_storage_account_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('templateSpecs_temp_storage_account_name'), '/1.0')]", + "properties": { + "mainTemplate": {} + }, + "tags": { + "ms-resource-usage": "azure-storage-account" + }, + "type": "Microsoft.Resources/templateSpecs/versions" + }, + { + "apiVersion": "2022-02-01", + "dependsOn": [ + "[resourceId('Microsoft.Resources/templateSpecs', parameters('templateSpecs_temp_storage_account_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('templateSpecs_temp_storage_account_name'), '/2.0')]", + "properties": { + "mainTemplate": {} + }, + "tags": { + "ms-resource-usage": "azure-storage-account" + }, + "type": "Microsoft.Resources/templateSpecs/versions" + }, + { + "apiVersion": "2022-02-01", + "dependsOn": [ + "[resourceId('Microsoft.Resources/templateSpecs', parameters('templateSpecs_temp_storage_account_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('templateSpecs_temp_storage_account_name'), '/3.0')]", + "properties": { + "mainTemplate": {} + }, + "tags": { + "ms-resource-usage": "azure-storage-account" + }, + "type": "Microsoft.Resources/templateSpecs/versions" + }, + { + "apiVersion": "2022-02-01", + "dependsOn": [ + "[resourceId('Microsoft.Resources/templateSpecs', parameters('templateSpecs_temp_storage_account_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('templateSpecs_temp_storage_account_name'), '/4.0')]", + "properties": { + "mainTemplate": {} + }, + "tags": { + "ms-resource-usage": "azure-storage-account" + }, + "type": "Microsoft.Resources/templateSpecs/versions" + } + ], + "variables": {} +} diff --git a/configurations/azure/stg-application-rg.json b/configurations/azure/stg-application-rg.json new file mode 100644 index 0000000..6bd141b --- /dev/null +++ b/configurations/azure/stg-application-rg.json @@ -0,0 +1,3307 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "Redis_redis_odms_cache_stg_name": { + "type": "String" + }, + "actionGroups_Application_Insights_Smart_Detection_name": { + "type": "String" + }, + "actiongroups_application_insights_smart_detection_externalid": { + "type": "String" + }, + "components_app_odms_dictation_stg_name": { + "type": "String" + }, + "networkInterfaces_pep_odms_redis_stg_nic_cd3bb46a_53e5_41c0_be85_a88d2ee6c7ce_name": { + "type": "String" + }, + "privateDnsZones_privatelink_redis_cache_windows_net_externalid": { + "type": "String" + }, + "privateEndpoints_pep_odms_redis_stg_name": { + "type": "String" + }, + "serverfarms_asp_odms_plan_stg_name": { + "type": "String" + }, + "sites_app_odms_dictation_stg_name": { + "type": "String" + }, + "smartdetectoralertrules_failure_anomalies___app_odms_dictation_stg_name": { + "type": "String" + }, + "staticSites_staapp_odms_dictation_stg_name": { + "type": "String" + }, + "vaults_kv_odms_secret_stg_name": { + "type": "String" + }, + "virtualnetworks_vnet_odms_network_maintenance_externalid": { + "type": "String" + }, + "virtualnetworks_vnet_odms_network_stg_externalid": { + "type": "String" + }, + "workspaces_DefaultWorkspace_108fb131_cdca_4729_a2be_e5bd8c0b3ba7_EJP_externalid": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2023-05-01-preview", + "location": "Japan East", + "name": "[parameters('Redis_redis_odms_cache_stg_name')]", + "properties": { + "enableNonSslPort": false, + "publicNetworkAccess": "Disabled", + "redisConfiguration": { + "maxfragmentationmemory-reserved": "125", + "maxmemory-delta": "125", + "maxmemory-reserved": "125" + }, + "redisVersion": "6.0", + "sku": { + "capacity": 1, + "family": "C", + "name": "Basic" + } + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Cache/Redis" + }, + { + "apiVersion": "2023-01-01", + "location": "Global", + "name": "[parameters('actionGroups_Application_Insights_Smart_Detection_name')]", + "properties": { + "armRoleReceivers": [ + { + "name": "Monitoring Contributor", + "roleId": "749f88d5-cbae-40b8-bcfc-e573ddc772fa", + "useCommonAlertSchema": true + }, + { + "name": "Monitoring Reader", + "roleId": "43d0d8ad-25c7-4714-9337-8ba259a9fe05", + "useCommonAlertSchema": true + } + ], + "automationRunbookReceivers": [], + "azureAppPushReceivers": [], + "azureFunctionReceivers": [], + "emailReceivers": [], + "enabled": true, + "eventHubReceivers": [], + "groupShortName": "SmartDetect", + "itsmReceivers": [], + "logicAppReceivers": [], + "smsReceivers": [], + "voiceReceivers": [], + "webhookReceivers": [] + }, + "type": "microsoft.insights/actionGroups" + }, + { + "apiVersion": "2020-02-02", + "kind": "web", + "location": "japaneast", + "name": "[parameters('components_app_odms_dictation_stg_name')]", + "properties": { + "Application_Type": "web", + "Flow_Type": "Redfield", + "IngestionMode": "LogAnalytics", + "Request_Source": "IbizaAIExtensionEnablementBlade", + "RetentionInDays": 90, + "WorkspaceResourceId": "[parameters('workspaces_DefaultWorkspace_108fb131_cdca_4729_a2be_e5bd8c0b3ba7_EJP_externalid')]", + "publicNetworkAccessForIngestion": "Enabled", + "publicNetworkAccessForQuery": "Enabled" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "microsoft.insights/components" + }, + { + "apiVersion": "2023-02-01", + "location": "japaneast", + "name": "[parameters('vaults_kv_odms_secret_stg_name')]", + "properties": { + "accessPolicies": [ + { + "objectId": "d17af452-c5de-4bb7-b62a-60cf4507d8bf", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "6ba25ad0-5375-41dc-bd91-d23edd5fd2cd", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "06769342-c9d0-4833-80bd-6093635e3843", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "8625d7c1-e5fb-47d9-bd6a-93fc4350480e", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "980776e9-10b6-494b-a632-da8c55b80b9f", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "3ef6b610-6a63-454d-a7ee-bf3b6ec4c8fe", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "a40c7e0a-0f67-4d6d-a879-8a6f0d1c40e8", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "dcb05c99-b93b-45de-a127-5be1eb798152", + "permissions": { + "certificates": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "ManageContacts", + "ManageIssuers", + "GetIssuers", + "ListIssuers", + "SetIssuers", + "DeleteIssuers" + ], + "keys": [ + "Get", + "List", + "Update", + "Create", + "Import", + "Delete", + "Recover", + "Backup", + "Restore", + "GetRotationPolicy", + "SetRotationPolicy", + "Rotate" + ], + "secrets": [ + "Get", + "List", + "Set", + "Delete", + "Recover", + "Backup", + "Restore" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "e1aef76e-a012-400d-8647-35cc528f00e4", + "permissions": { + "certificates": [], + "keys": [ + "Get" + ], + "secrets": [ + "Get" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "b0b4dfd6-8265-4634-a6f1-832d8a4a503d", + "permissions": { + "certificates": [], + "keys": [], + "secrets": [ + "Get", + "List" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "3be7afbe-1639-4a16-a983-db172e5fc8a9", + "permissions": { + "certificates": [], + "keys": [], + "secrets": [ + "Get", + "List" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + }, + { + "objectId": "df083779-38ab-45e5-9300-2d32bcc3ca16", + "permissions": { + "certificates": [], + "keys": [], + "secrets": [ + "Get", + "List" + ] + }, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a" + } + ], + "enableRbacAuthorization": false, + "enableSoftDelete": true, + "enabledForDeployment": false, + "enabledForDiskEncryption": false, + "enabledForTemplateDeployment": false, + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Deny", + "ipRules": [], + "virtualNetworkRules": [ + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-gateway-stg')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-endpoint-stg')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-public-stg')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-private-stg')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-integration-stg')]", + "ignoreMissingVnetServiceEndpoint": false + }, + { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_maintenance_externalid'), '/subnets/snet-odms-deploy-maintenance')]", + "ignoreMissingVnetServiceEndpoint": false + } + ] + }, + "provisioningState": "Succeeded", + "publicNetworkAccess": "Enabled", + "sku": { + "family": "A", + "name": "Standard" + }, + "softDeleteRetentionInDays": 90, + "tenantId": "db0d46dc-1045-43e7-9482-f2fe6e56175a", + "vaultUri": "[concat('https://', parameters('vaults_kv_odms_secret_stg_name'), '.vault.azure.net/')]" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.KeyVault/vaults" + }, + { + "apiVersion": "2022-11-01", + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_pep_odms_redis_stg_nic_cd3bb46a_53e5_41c0_be85_a88d2ee6c7ce_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"745e72f9-dc3e-4426-87ae-4133f7e2c3ff\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_redis_stg_nic_cd3bb46a_53e5_41c0_be85_a88d2ee6c7ce_name')), '/ipConfigurations/privateEndpointIpConfig.7ed9a68d-fa60-4aaf-9864-5918f70a46f0')]", + "name": "privateEndpointIpConfig.7ed9a68d-fa60-4aaf-9864-5918f70a46f0", + "properties": { + "primary": true, + "privateIPAddress": "10.2.1.7", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "redis-odms-cache-stg.redis.cache.windows.net" + ], + "groupId": "redisCache", + "requiredMemberName": "redisCache" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-public-stg')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-09-01", + "kind": "linux", + "location": "Japan East", + "name": "[parameters('serverfarms_asp_odms_plan_stg_name')]", + "properties": { + "elasticScaleEnabled": false, + "freeOfferExpirationTime": "2023-07-15T07:27:06.07", + "hyperV": false, + "isSpot": false, + "isXenon": false, + "maximumElasticWorkerCount": 1, + "perSiteScaling": false, + "reserved": true, + "targetWorkerCount": 0, + "targetWorkerSizeId": 0, + "zoneRedundant": false + }, + "sku": { + "capacity": 1, + "family": "B", + "name": "B1", + "size": "B1", + "tier": "Basic" + }, + "type": "Microsoft.Web/serverfarms" + }, + { + "apiVersion": "2022-09-01", + "location": "East Asia", + "name": "[parameters('staticSites_staapp_odms_dictation_stg_name')]", + "properties": { + "allowConfigFileUpdates": true, + "branch": "develop", + "enterpriseGradeCdnStatus": "Disabled", + "provider": "DevOps", + "repositoryUrl": "https://dev.azure.com/ODMSCloud/ODMS Cloud/_git/ODMS Cloud", + "stagingEnvironmentPolicy": "Enabled" + }, + "sku": { + "name": "Standard", + "tier": "Standard" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Web/staticSites" + }, + { + "apiVersion": "2021-04-01", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "global", + "name": "[parameters('smartdetectoralertrules_failure_anomalies___app_odms_dictation_stg_name')]", + "properties": { + "actionGroups": { + "groupIds": [ + "[parameters('actiongroups_application_insights_smart_detection_externalid')]" + ] + }, + "description": "Failure Anomalies notifies you of an unusual rise in the rate of failed HTTP requests or dependency calls.", + "detector": { + "id": "FailureAnomaliesDetector" + }, + "frequency": "PT1M", + "scope": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "severity": "Sev3", + "state": "Enabled" + }, + "type": "microsoft.alertsmanagement/smartdetectoralertrules" + }, + { + "apiVersion": "2023-05-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_stg_name'))]" + ], + "name": "[concat(parameters('Redis_redis_odms_cache_stg_name'), '/Data Contributor')]", + "properties": { + "permissions": "+@all -@dangerous +cluster|info +cluster|nodes +cluster|slots allkeys" + }, + "type": "Microsoft.Cache/Redis/accessPolicies" + }, + { + "apiVersion": "2023-05-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_stg_name'))]" + ], + "name": "[concat(parameters('Redis_redis_odms_cache_stg_name'), '/Data Owner')]", + "properties": { + "permissions": "+@all allkeys" + }, + "type": "Microsoft.Cache/Redis/accessPolicies" + }, + { + "apiVersion": "2023-05-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_stg_name'))]" + ], + "name": "[concat(parameters('Redis_redis_odms_cache_stg_name'), '/Data Reader')]", + "properties": { + "permissions": "+@read +@connection +cluster|info +cluster|nodes +cluster|slots allkeys" + }, + "type": "Microsoft.Cache/Redis/accessPolicies" + }, + { + "apiVersion": "2023-05-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_stg_name'))]" + ], + "name": "[concat(parameters('Redis_redis_odms_cache_stg_name'), '/pep-odms-redis-stg.355a8577-7b82-48f5-ab0c-4af9af42dd10')]", + "properties": { + "privateEndpoint": {}, + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "description": "Auto-Approved", + "status": "Approved" + } + }, + "type": "Microsoft.Cache/Redis/privateEndpointConnections" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/degradationindependencyduration')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Degradation in dependency duration", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "degradationindependencyduration", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/degradationinserverresponsetime')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Degradation in server response time", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "degradationinserverresponsetime", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/digestMailConfiguration')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This rule describes the digest mail preferences", + "DisplayName": "Digest Mail Configuration", + "HelpUrl": "www.homail.com", + "IsEnabledByDefault": true, + "IsHidden": true, + "IsInPreview": false, + "Name": "digestMailConfiguration", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/extension_billingdatavolumedailyspikeextension')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the billing data generated by your application, and can warn you about an unusual increase in your application's billing costs", + "DisplayName": "Abnormal rise in daily data volume (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/tree/master/SmartDetection/billing-data-volume-daily-spike.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_billingdatavolumedailyspikeextension", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/extension_canaryextension')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Canary extension", + "DisplayName": "Canary extension", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/blob/master/SmartDetection/", + "IsEnabledByDefault": true, + "IsHidden": true, + "IsInPreview": true, + "Name": "extension_canaryextension", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/extension_exceptionchangeextension')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the exceptions thrown in your application, and can warn you about unusual patterns in your exception telemetry.", + "DisplayName": "Abnormal rise in exception volume (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/blob/master/SmartDetection/abnormal-rise-in-exception-volume.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_exceptionchangeextension", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/extension_memoryleakextension')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the memory consumption of each process in your application, and can warn you about potential memory leaks or increased memory consumption.", + "DisplayName": "Potential memory leak detected (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/tree/master/SmartDetection/memory-leak.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_memoryleakextension", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/extension_securityextensionspackage')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the telemetry generated by your application and detects potential security issues.", + "DisplayName": "Potential security issue detected (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/blob/master/SmartDetection/application-security-detection-pack.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_securityextensionspackage", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/extension_traceseveritydetector')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "This detection rule automatically analyzes the trace logs emitted from your application, and can warn you about unusual patterns in the severity of your trace telemetry.", + "DisplayName": "Degradation in trace severity ratio (preview)", + "HelpUrl": "https://github.com/Microsoft/ApplicationInsights-Home/blob/master/SmartDetection/degradation-in-trace-severity-ratio.md", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": true, + "Name": "extension_traceseveritydetector", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/longdependencyduration')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Long dependency duration", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "longdependencyduration", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/migrationToAlertRulesCompleted')]", + "properties": { + "customEmails": [], + "enabled": false, + "ruleDefinitions": { + "Description": "A configuration that controls the migration state of Smart Detection to Smart Alerts", + "DisplayName": "Migration To Alert Rules Completed", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": false, + "IsHidden": true, + "IsInPreview": true, + "Name": "migrationToAlertRulesCompleted", + "SupportsEmailNotifications": false + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/slowpageloadtime')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Slow page load time", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "slowpageloadtime", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2018-05-01-preview", + "dependsOn": [ + "[resourceId('microsoft.insights/components', parameters('components_app_odms_dictation_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('components_app_odms_dictation_stg_name'), '/slowserverresponsetime')]", + "properties": { + "customEmails": [], + "enabled": true, + "ruleDefinitions": { + "Description": "Smart Detection rules notify you of performance anomaly issues.", + "DisplayName": "Slow server response time", + "HelpUrl": "https://docs.microsoft.com/en-us/azure/application-insights/app-insights-proactive-performance-diagnostics", + "IsEnabledByDefault": true, + "IsHidden": false, + "IsInPreview": false, + "Name": "slowserverresponsetime", + "SupportsEmailNotifications": true + }, + "sendEmailsToSubscriptionOwners": true + }, + "type": "microsoft.insights/components/ProactiveDetectionConfigs" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/ca-odms-agw-stg')]", + "properties": { + "attributes": { + "enabled": true, + "exp": 1717315879, + "nbf": 1685692879 + } + }, + "type": "Microsoft.KeyVault/vaults/keys" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/ca-odms-agw-stg')]", + "properties": { + "attributes": { + "enabled": true, + "exp": 1717315879, + "nbf": 1685692879 + }, + "contentType": "application/x-pkcs12" + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/db-host')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/db-name')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/db-pass')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/db-port')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/db-user')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/notification-hub-connect-string')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/notification-hub-name')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/redis-host')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/redis-password')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/redis-port')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/sendgrid-api-key')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-endpoint-au')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-endpoint-eu')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-endpoint-us')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-key-au')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-key-eu')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-key-us')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-name-au')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-name-eu')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/storage-account-name-us')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/token-private-key')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "tags": { + "file-encoding": "utf-8" + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2023-02-01", + "dependsOn": [ + "[resourceId('Microsoft.KeyVault/vaults', parameters('vaults_kv_odms_secret_stg_name'))]" + ], + "location": "japaneast", + "name": "[concat(parameters('vaults_kv_odms_secret_stg_name'), '/token-public-key')]", + "properties": { + "attributes": { + "enabled": true + } + }, + "tags": { + "file-encoding": "utf-8" + }, + "type": "Microsoft.KeyVault/vaults/secrets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_stg_name'))]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_pep_odms_redis_stg_name')]", + "properties": { + "customDnsConfigs": [], + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_redis_stg_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_pep_odms_redis_stg_name'), '_78d2d459-753c-4f36-9ec8-58eb7607f055'))]", + "name": "[concat(parameters('privateEndpoints_pep_odms_redis_stg_name'), '_78d2d459-753c-4f36-9ec8-58eb7607f055')]", + "properties": { + "groupIds": [ + "redisCache" + ], + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "description": "Auto-Approved", + "status": "Approved" + }, + "privateLinkServiceId": "[resourceId('Microsoft.Cache/Redis', parameters('Redis_redis_odms_cache_stg_name'))]" + } + } + ], + "subnet": { + "id": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-public-stg')]" + } + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_redis_stg_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_pep_odms_redis_stg_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-redis-cache-windows-net", + "properties": { + "privateDnsZoneId": "[parameters('privateDnsZones_privatelink_redis_cache_windows_net_externalid')]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/serverfarms', parameters('serverfarms_asp_odms_plan_stg_name'))]" + ], + "identity": { + "type": "SystemAssigned" + }, + "kind": "app,linux,container", + "location": "Japan East", + "name": "[parameters('sites_app_odms_dictation_stg_name')]", + "properties": { + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "994FB83D64A1631E64DF4829983A6AC58B12552E20EF98888EE17E540C35A0FF", + "dailyMemoryTimeQuota": 0, + "enabled": true, + "hostNameSslStates": [ + { + "hostType": "Standard", + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '.azurewebsites.net')]", + "sslState": "Disabled" + }, + { + "hostType": "Repository", + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '.scm.azurewebsites.net')]", + "sslState": "Disabled" + } + ], + "hostNamesDisabled": false, + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "reserved": true, + "scmSiteAlsoStopped": false, + "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('serverfarms_asp_odms_plan_stg_name'))]", + "siteConfig": { + "acrUseManagedIdentityCreds": true, + "alwaysOn": false, + "functionAppScaleLimit": 0, + "http20Enabled": false, + "linuxFxVersion": "DOCKER|crodmsregistrymaintenance.azurecr.io/odmscloud/staging/dictation:latest", + "minimumElasticInstanceCount": 0, + "numberOfWorkers": 1 + }, + "storageAccountRequired": false, + "virtualNetworkSubnetId": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-integration-stg')]", + "vnetContentShareEnabled": false, + "vnetImagePullEnabled": true, + "vnetRouteAllEnabled": true + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/ftp')]", + "properties": { + "allow": true + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/scm')]", + "properties": { + "allow": true + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/web')]", + "properties": { + "acrUseManagedIdentityCreds": true, + "alwaysOn": false, + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "elasticWebAppScaleLimit": 0, + "experiments": { + "rampUpRules": [] + }, + "ftpsState": "FtpsOnly", + "functionsRuntimeScaleMonitoringEnabled": false, + "healthCheckPath": "/health", + "http20Enabled": false, + "httpLoggingEnabled": true, + "ipSecurityRestrictions": [ + { + "action": "Allow", + "priority": 300, + "tag": "Default", + "vnetSubnetResourceId": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-gateway-stg')]" + }, + { + "action": "Deny", + "description": "Deny all access", + "ipAddress": "Any", + "name": "Deny all", + "priority": 2147483647 + } + ], + "ipSecurityRestrictionsDefaultAction": "Deny", + "linuxFxVersion": "DOCKER|crodmsregistrymaintenance.azurecr.io/odmscloud/staging/dictation:latest", + "loadBalancing": "LeastRequests", + "localMySqlEnabled": false, + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "managedServiceIdentityId": 7801, + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "numberOfWorkers": 1, + "preWarmedInstanceCount": 0, + "publicNetworkAccess": "Enabled", + "publishingUsername": "$app-odms-dictation-stg", + "remoteDebuggingEnabled": false, + "remoteDebuggingVersion": "VS2019", + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "action": "Allow", + "ipAddress": "20.191.160.142/32", + "name": "Allow Deploy", + "priority": 300, + "tag": "Default" + }, + { + "action": "Allow", + "description": "Allow all access", + "ipAddress": "Any", + "name": "Allow all", + "priority": 2147483647 + } + ], + "scmIpSecurityRestrictionsDefaultAction": "Allow", + "scmIpSecurityRestrictionsUseMain": false, + "scmMinTlsVersion": "1.2", + "scmType": "None", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "5f6e1cc7-2723-4f61-ab5f-bda37c4bd926_snet-odms-integration-stg", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": true, + "webSocketsEnabled": false, + "websiteTimeZone": "UTC" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Web/sites/config" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/', parameters('sites_app_odms_dictation_stg_name'), '.azurewebsites.net')]", + "properties": { + "hostNameType": "Verified", + "siteName": "app-odms-dictation-stg" + }, + "type": "Microsoft.Web/sites/hostNameBindings" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/pep-odms-app-stg-b0696109-08d4-4718-ae27-3ac37c176474')]", + "properties": { + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "status": "Approved" + } + }, + "type": "Microsoft.Web/sites/privateEndpointConnections" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-01T17_01_52_4395401')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-02T04_01_52_2400192')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-02T17_01_51_9789811')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-03T04_01_51_7789502')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-03T17_01_51_5770420')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-04T04_01_51_3402147')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-04T17_01_51_0822643')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-05T04_01_50_9409054')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-05T17_01_50_6522437')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-06T04_01_50_4479253')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-06T17_01_50_2125604')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-07T04_01_50_0322469')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-07T17_01_49_8193488')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-08T04_01_49_5843552')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-08T17_01_50_1290974')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-09T04_01_49_9252056')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-09T17_01_49_6538333')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-10T04_01_49_5006919')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-10T17_01_49_2983259')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-11T04_01_49_0800782')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-11T17_01_48_8259455')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-12T04_01_48_6948488')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-12T17_01_48_3447900')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-13T04_01_48_1928663')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-13T17_01_47_8950195')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-14T04_01_47_7071785')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-14T17_01_47_4165128')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-15T04_01_47_2621022')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-15T17_01_47_0141878')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-16T04_01_46_7880521')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-16T17_01_46_5747777')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-17T01_01_46_4607542')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-17T04_01_46_4179744')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-17T07_01_46_3362308')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-17T10_01_46_2603804')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-17T13_01_46_2245552')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-17T17_01_46_1511214')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-18T01_01_46_0614808')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-18T04_01_45_9990951')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-18T07_01_45_9688959')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-18T10_01_45_8963053')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-18T13_01_45_8351009')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-18T17_01_45_7011551')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-19T01_01_45_5876180')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-19T04_01_45_5277605')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-19T07_01_45_4522654')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-19T10_01_45_4333505')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-19T13_01_45_3533270')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-19T17_01_45_3353090')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-20T01_01_45_1943436')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-20T04_01_45_1427344')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-20T07_01_45_0899981')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-20T10_01_45_0307686')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-20T13_01_44_9867133')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-20T17_01_45_2104714')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-21T01_01_45_1396987')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-21T04_01_45_0982470')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-21T07_01_44_9719062')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-21T10_01_44_9374810')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-21T13_01_44_9024775')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-21T17_01_44_7579293')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-22T01_01_44_6663762')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-22T04_01_44_6277776')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-22T07_01_44_4999198')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-22T10_01_44_4384546')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-22T13_01_44_4312483')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-22T17_01_44_3376946')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-23T01_01_44_2025387')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-23T04_01_44_1623043')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-23T07_01_44_0708065')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-23T10_01_44_0025943')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-23T13_01_44_0782081')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-23T17_01_43_8807935')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-24T01_01_43_7751506')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-24T04_01_44_2020408')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-24T07_01_44_1376848')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-24T10_01_44_0795777')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-24T13_01_44_0312289')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-24T17_01_43_9680803')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-25T01_01_43_8023518')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-25T04_01_43_7272741')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-25T07_01_43_7059167')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-25T10_01_43_6454601')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-25T13_01_43_6025988')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-25T17_01_43_5239205')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-26T01_01_43_4224155')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-26T04_01_43_3577583')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-26T07_01_43_4293020')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-26T10_01_43_2761418')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-26T13_01_43_2152656')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-26T17_01_43_1399522')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-26T23_01_43_0606270')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T00_01_43_1250092')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T01_01_43_0826445')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T02_01_43_0323058')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T03_01_43_0109514')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T04_01_43_0417973')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T05_01_43_0007284')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T06_01_43_0325708')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T07_01_43_0042972')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T08_01_42_9815882')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T09_01_42_9455066')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T10_01_42_9305634')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T11_01_42_9043557')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T12_01_42_8871667')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T13_01_42_8450814')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T14_01_42_8370788')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T15_01_42_8247235')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T16_01_42_8121251')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T17_01_43_6908762')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T18_01_43_6353075')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T19_01_43_6019495')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T20_01_43_6173476')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T21_01_43_6719049')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T22_01_43_6755935')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-27T23_01_43_6571223')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T00_01_43_6994484')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T01_01_43_6269764')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T02_01_43_6544885')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T03_01_44_3657976')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T04_01_44_3029602')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T05_01_44_3080304')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T06_01_44_3642056')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T07_01_44_2852407')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T08_01_44_5810534')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T09_01_44_5159115')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T10_01_45_1201414')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T11_01_45_0878270')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T12_01_45_0837159')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T13_01_45_0806793')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T14_01_45_1702799')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T15_01_45_0359622')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T16_01_45_0655856')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T17_01_45_0354025')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T18_01_44_9970312')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T19_01_44_9626034')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T20_01_44_9682298')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T21_01_44_9578344')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T22_01_44_9204091')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-28T23_01_44_9621364')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T00_01_44_9629174')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T01_01_44_9298154')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T02_01_44_8898714')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T03_01_44_8757869')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T04_01_44_9592986')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T05_01_44_8450402')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T06_01_44_8056459')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T07_01_44_7942242')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T08_01_44_8478555')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T09_01_44_7887369')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T10_01_44_7593682')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T11_01_44_7465941')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T12_01_44_7440076')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T13_01_44_7392680')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T14_01_44_7049969')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T15_01_44_6878225')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T16_01_44_6487617')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T17_01_44_6018132')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T18_01_44_6187722')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T19_01_44_6304044')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T20_01_44_5780681')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T21_01_44_5276850')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T22_01_44_5517493')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-29T23_01_44_6156093')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T00_01_44_5433179')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T01_01_44_5710371')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T02_01_44_5279846')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T03_01_44_5909048')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T04_01_44_4433185')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T05_01_44_4208347')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T06_01_44_4771371')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T07_01_44_3942737')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T08_01_44_4332434')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T09_01_44_3624370')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T10_01_44_4347458')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T11_01_44_3813008')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T12_01_44_3534260')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T13_01_44_2872542')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T14_01_44_2701229')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T15_01_44_2762781')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T16_01_44_2253850')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T17_01_44_2438488')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T18_01_44_2152320')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T19_01_44_2046178')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T20_01_44_2010980')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T21_01_44_1395839')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T22_01_44_1254428')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-30T23_01_44_2470558')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-31T00_01_44_0988483')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-31T01_01_44_0870313')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-31T02_01_44_0504968')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-31T03_01_44_0449909')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-31T04_01_44_0832586')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-31T05_01_44_0080340')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-31T06_01_44_0090995')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2015-08-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/2023-07-31T07_01_44_0038041')]", + "type": "Microsoft.Web/sites/snapshots" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', parameters('sites_app_odms_dictation_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('sites_app_odms_dictation_stg_name'), '/5f6e1cc7-2723-4f61-ab5f-bda37c4bd926_snet-odms-integration-stg')]", + "properties": { + "isSwift": true, + "vnetResourceId": "[concat(parameters('virtualnetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-integration-stg')]" + }, + "type": "Microsoft.Web/sites/virtualNetworkConnections" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Web/staticSites', parameters('staticSites_staapp_odms_dictation_stg_name'))]" + ], + "location": "East Asia", + "name": "[concat(parameters('staticSites_staapp_odms_dictation_stg_name'), '/pep-odms-staapp-stg-8eba-e53c5245-b149-410a-addc-aaa5336a3787')]", + "properties": { + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "status": "Approved" + } + }, + "type": "Microsoft.Web/staticSites/privateEndpointConnections" + } + ], + "variables": {} +} diff --git a/configurations/azure/stg-azureADB2C-rg.json b/configurations/azure/stg-azureADB2C-rg.json new file mode 100644 index 0000000..9711538 --- /dev/null +++ b/configurations/azure/stg-azureADB2C-rg.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "b2cDirectories_adb2codmsstg_onmicrosoft_com_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2023-01-18-preview", + "location": "Global", + "name": "[parameters('b2cDirectories_adb2codmsstg_onmicrosoft_com_name')]", + "properties": {}, + "sku": { + "name": "PremiumP1", + "tier": "A0" + }, + "type": "Microsoft.AzureActiveDirectory/b2cDirectories" + } + ], + "variables": {} +} diff --git a/configurations/azure/stg-database-rg.json b/configurations/azure/stg-database-rg.json new file mode 100644 index 0000000..4d7415b --- /dev/null +++ b/configurations/azure/stg-database-rg.json @@ -0,0 +1,5922 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "flexibleServers_mysql_odms_db_stg_name": { + "type": "String" + }, + "privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_externalid": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_stg_externalid": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2022-09-30-preview", + "location": "Japan East", + "name": "[parameters('flexibleServers_mysql_odms_db_stg_name')]", + "properties": { + "administratorLogin": "odmsAdmin", + "availabilityZone": "1", + "backup": { + "backupRetentionDays": 7, + "geoRedundantBackup": "Disabled" + }, + "highAvailability": { + "mode": "Disabled" + }, + "maintenanceWindow": { + "customWindow": "Disabled", + "dayOfWeek": 0, + "startHour": 0, + "startMinute": 0 + }, + "network": { + "delegatedSubnetResourceId": "[concat(parameters('virtualNetworks_vnet_odms_network_stg_externalid'), '/subnets/snet-odms-private-stg')]", + "privateDnsZoneResourceId": "[parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_externalid')]", + "publicNetworkAccess": "Disabled" + }, + "replicationRole": "None", + "storage": { + "autoGrow": "Enabled", + "autoIoScaling": "Disabled", + "iops": 360, + "logOnDisk": "Disabled", + "storageSizeGB": 20 + }, + "version": "8.0.21" + }, + "sku": { + "name": "Standard_B1s", + "tier": "Burstable" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.DBforMySQL/flexibleServers" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/daily-20230725t053700-c3fd140d-3620-488c-9516-d0c0fb44c636')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/daily-20230726t053700-c3fd140d-3620-488c-9516-d0c0fb44c636')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/daily-20230727t041600-c3fd140d-3620-488c-9516-d0c0fb44c636')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/daily-20230728t045729-c3fd140d-3620-488c-9516-d0c0fb44c636')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/daily-20230728t230900-c3fd140d-3620-488c-9516-d0c0fb44c636')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/daily-20230729t230900-c3fd140d-3620-488c-9516-d0c0fb44c636')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-09-30-preview", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/daily-20230730t230900-c3fd140d-3620-488c-9516-d0c0fb44c636')]", + "type": "Microsoft.DBforMySQL/flexibleServers/backups" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/aad_auth_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/activate_all_roles_on_login')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_address')]", + "properties": { + "currentValue": "127.0.0.1", + "source": "system-default", + "value": "127.0.0.1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_port')]", + "properties": { + "currentValue": "33062", + "source": "system-default", + "value": "33062" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_ssl_ca')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_ssl_capath')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_ssl_cert')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_ssl_cipher')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_ssl_crl')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_ssl_crlpath')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_ssl_key')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_tls_ciphersuites')]", + "properties": { + "currentValue": "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256", + "source": "system-default", + "value": "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/admin_tls_version')]", + "properties": { + "currentValue": "TLSv1.2", + "source": "system-default", + "value": "TLSv1.2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/archive')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/audit_log_enabled')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/audit_log_events')]", + "properties": { + "currentValue": "CONNECTION", + "source": "system-default", + "value": "CONNECTION" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/audit_log_exclude_users')]", + "properties": { + "currentValue": "azure_superuser", + "source": "system-default", + "value": "azure_superuser" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/audit_log_include_users')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/audit_slow_log_enabled')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/auto_generate_certs')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/auto_increment_increment')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/auto_increment_offset')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/autocommit')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/automatic_sp_privileges')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/avoid_temporal_upgrade')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/azure_replication_repair_time')]", + "properties": { + "currentValue": "60", + "source": "system-default", + "value": "60" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/back_log')]", + "properties": { + "currentValue": "185", + "source": "system-default", + "value": "185" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/big_tables')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_cache_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_checksum')]", + "properties": { + "currentValue": "CRC32", + "source": "system-default", + "value": "CRC32" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_direct_non_transactional_updates')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_encryption')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_error_action')]", + "properties": { + "currentValue": "ABORT_SERVER", + "source": "system-default", + "value": "ABORT_SERVER" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_expire_logs_seconds')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_format')]", + "properties": { + "currentValue": "ROW", + "source": "system-default", + "value": "ROW" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_group_commit_sync_delay')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_group_commit_sync_no_delay_count')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_gtid_simple_recovery')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_order_commits')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_rotate_encryption_master_key_at_startup')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_row_event_max_size')]", + "properties": { + "currentValue": "1048576", + "source": "system-default", + "value": "1048576" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_row_image')]", + "properties": { + "currentValue": "minimal", + "source": "system-default", + "value": "minimal" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_row_metadata')]", + "properties": { + "currentValue": "MINIMAL", + "source": "system-default", + "value": "MINIMAL" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_row_value_options')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_rows_query_log_events')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_stmt_cache_size')]", + "properties": { + "currentValue": "32768", + "source": "system-default", + "value": "32768" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_transaction_dependency_history_size')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/binlog_transaction_dependency_tracking')]", + "properties": { + "currentValue": "WRITESET", + "source": "system-default", + "value": "WRITESET" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/blackhole')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/block_encryption_mode')]", + "properties": { + "currentValue": "aes-128-ecb", + "source": "system-default", + "value": "aes-128-ecb" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/bulk_insert_buffer_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/caching_sha2_password_auto_generate_rsa_keys')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/caching_sha2_password_private_key_path')]", + "properties": { + "currentValue": "private_key.pem", + "source": "system-default", + "value": "private_key.pem" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/caching_sha2_password_public_key_path')]", + "properties": { + "currentValue": "public_key.pem", + "source": "system-default", + "value": "public_key.pem" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/character_set_filesystem')]", + "properties": { + "currentValue": "binary", + "source": "system-default", + "value": "binary" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/character_set_server')]", + "properties": { + "currentValue": "utf8mb4", + "source": "system-default", + "value": "utf8mb4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/check_proxy_users')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/collation_server')]", + "properties": { + "currentValue": "utf8mb4_0900_ai_ci", + "source": "system-default", + "value": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/completion_type')]", + "properties": { + "currentValue": "NO_CHAIN", + "source": "system-default", + "value": "NO_CHAIN" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/concurrent_insert')]", + "properties": { + "currentValue": "AUTO", + "source": "system-default", + "value": "AUTO" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/connect_timeout')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/create_admin_listener_thread')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/cte_max_recursion_depth')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/default_authentication_plugin')]", + "properties": { + "currentValue": "mysql_native_password", + "source": "system-default", + "value": "mysql_native_password" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/default_password_lifetime')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/default_storage_engine')]", + "properties": { + "currentValue": "InnoDB", + "source": "system-default", + "value": "InnoDB" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/default_table_encryption')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/default_tmp_storage_engine')]", + "properties": { + "currentValue": "InnoDB", + "source": "system-default", + "value": "InnoDB" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/default_week_format')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/delay_key_write')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/delayed_insert_limit')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/delayed_insert_timeout')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/delayed_queue_size')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/disabled_storage_engines')]", + "properties": { + "currentValue": "MyISAM,MRG_MyISAM,BLACKHOLE,FEDEATED,ARCHIVE", + "source": "system-default", + "value": "MyISAM,MRG_MyISAM,BLACKHOLE,FEDEATED,ARCHIVE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/disconnect_on_expired_password')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/div_precision_increment')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/end_markers_in_json')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/enforce_gtid_consistency')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/eq_range_index_dive_limit')]", + "properties": { + "currentValue": "200", + "source": "system-default", + "value": "200" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/event_scheduler')]", + "properties": { + "currentValue": "OFF", + "source": "user-override", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/expire_logs_days')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/explicit_defaults_for_timestamp')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/flush')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/flush_time')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/ft_boolean_syntax')]", + "properties": { + "currentValue": "+ -><()~*:\"\"&|", + "source": "system-default", + "value": "+ -><()~*:\"\"&|" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/ft_query_expansion_limit')]", + "properties": { + "currentValue": "20", + "source": "system-default", + "value": "20" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/general_log')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/general_log_file')]", + "properties": { + "currentValue": "/app/work/serverlogs/mysql-general-mysql-odms-db-stg-2023060801.log", + "source": "user-override", + "value": "/app/work/serverlogs/mysql-general-mysql-odms-db-stg-2023060801.log" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/generated_random_password_length')]", + "properties": { + "currentValue": "20", + "source": "system-default", + "value": "20" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/group_concat_max_len')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/group_replication_consistency')]", + "properties": { + "currentValue": "EVENTUAL", + "source": "system-default", + "value": "EVENTUAL" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/gtid_executed_compression_period')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/gtid_mode')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/histogram_generation_max_mem_size')]", + "properties": { + "currentValue": "20000000", + "source": "system-default", + "value": "20000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/host_cache_size')]", + "properties": { + "currentValue": "279", + "source": "system-default", + "value": "279" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/information_schema_stats_expiry')]", + "properties": { + "currentValue": "86400", + "source": "system-default", + "value": "86400" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/init_connect')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_adaptive_flushing')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_adaptive_flushing_lwm')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_adaptive_hash_index')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_adaptive_hash_index_parts')]", + "properties": { + "currentValue": "8", + "source": "system-default", + "value": "8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_adaptive_max_sleep_delay')]", + "properties": { + "currentValue": "150000", + "source": "system-default", + "value": "150000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_autoextend_increment')]", + "properties": { + "currentValue": "64", + "source": "system-default", + "value": "64" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_autoinc_lock_mode')]", + "properties": { + "currentValue": "2", + "source": "system-default", + "value": "2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_chunk_size')]", + "properties": { + "currentValue": "33554432", + "source": "system-default", + "value": "33554432" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_dump_at_shutdown')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_dump_now')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_dump_pct')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_filename')]", + "properties": { + "currentValue": "ib_buffer_pool", + "source": "system-default", + "value": "ib_buffer_pool" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_in_core_file')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_instances')]", + "properties": { + "currentValue": "8", + "source": "system-default", + "value": "8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_load_abort')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_load_at_startup')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_load_now')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_buffer_pool_size')]", + "properties": { + "currentValue": "268435456", + "source": "system-default", + "value": "268435456" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_change_buffer_max_size')]", + "properties": { + "currentValue": "25", + "source": "system-default", + "value": "25" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_change_buffering')]", + "properties": { + "currentValue": "all", + "source": "system-default", + "value": "all" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_checksum_algorithm')]", + "properties": { + "currentValue": "crc32", + "source": "system-default", + "value": "crc32" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_cmp_per_index_enabled')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_commit_concurrency')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_compression_failure_threshold_pct')]", + "properties": { + "currentValue": "5", + "source": "system-default", + "value": "5" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_compression_level')]", + "properties": { + "currentValue": "6", + "source": "system-default", + "value": "6" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_compression_pad_pct_max')]", + "properties": { + "currentValue": "50", + "source": "system-default", + "value": "50" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_concurrency_tickets')]", + "properties": { + "currentValue": "5000", + "source": "system-default", + "value": "5000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_data_file_path')]", + "properties": { + "currentValue": "ibdata1:12M:autoextend", + "source": "system-default", + "value": "ibdata1:12M:autoextend" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_data_home_dir')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_deadlock_detect')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_dedicated_server')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_default_row_format')]", + "properties": { + "currentValue": "DYNAMIC", + "source": "system-default", + "value": "DYNAMIC" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_directories')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_disable_sort_file_cache')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_doublewrite')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_doublewrite_batch_size')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_doublewrite_dir')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_doublewrite_files')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_doublewrite_pages')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_fast_shutdown')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_fatal_semaphore_wait_threshold')]", + "properties": { + "currentValue": "7201", + "source": "system-default", + "value": "7201" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_file_per_table')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_fill_factor')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_flush_log_at_timeout')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_flush_log_at_trx_commit')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_flush_method')]", + "properties": { + "currentValue": "fsync", + "source": "system-default", + "value": "fsync" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_flush_neighbors')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_flush_sync')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_flushing_avg_loops')]", + "properties": { + "currentValue": "30", + "source": "system-default", + "value": "30" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_force_load_corrupted')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_force_recovery')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_fsync_threshold')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_cache_size')]", + "properties": { + "currentValue": "8000000", + "source": "system-default", + "value": "8000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_enable_diag_print')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_enable_stopword')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_max_token_size')]", + "properties": { + "currentValue": "84", + "source": "system-default", + "value": "84" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_min_token_size')]", + "properties": { + "currentValue": "3", + "source": "system-default", + "value": "3" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_num_word_optimize')]", + "properties": { + "currentValue": "2000", + "source": "system-default", + "value": "2000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_result_cache_limit')]", + "properties": { + "currentValue": "2000000000", + "source": "system-default", + "value": "2000000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_server_stopword_table')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_sort_pll_degree')]", + "properties": { + "currentValue": "2", + "source": "system-default", + "value": "2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_total_cache_size')]", + "properties": { + "currentValue": "640000000", + "source": "system-default", + "value": "640000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_ft_user_stopword_table')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_idle_flush_pct')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_io_capacity')]", + "properties": { + "currentValue": "200", + "source": "system-default", + "value": "200" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_io_capacity_max')]", + "properties": { + "currentValue": "2000", + "source": "system-default", + "value": "2000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_lock_wait_timeout')]", + "properties": { + "currentValue": "50", + "source": "system-default", + "value": "50" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_log_buffer_size')]", + "properties": { + "currentValue": "16777216", + "source": "system-default", + "value": "16777216" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_log_checksums')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_log_compressed_pages')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_log_spin_cpu_abs_lwm')]", + "properties": { + "currentValue": "80", + "source": "system-default", + "value": "80" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_log_spin_cpu_pct_hwm')]", + "properties": { + "currentValue": "50", + "source": "system-default", + "value": "50" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_log_wait_for_flush_spin_hwm')]", + "properties": { + "currentValue": "400", + "source": "system-default", + "value": "400" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_log_write_ahead_size')]", + "properties": { + "currentValue": "8192", + "source": "system-default", + "value": "8192" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_lru_scan_depth')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_max_dirty_pages_pct')]", + "properties": { + "currentValue": "90", + "source": "system-default", + "value": "90" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_max_dirty_pages_pct_lwm')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_max_purge_lag')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_max_purge_lag_delay')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_max_undo_log_size')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_monitor_disable')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_monitor_enable')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_monitor_reset')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_monitor_reset_all')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_numa_interleave')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_old_blocks_pct')]", + "properties": { + "currentValue": "37", + "source": "system-default", + "value": "37" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_old_blocks_time')]", + "properties": { + "currentValue": "1000", + "source": "system-default", + "value": "1000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_online_alter_log_max_size')]", + "properties": { + "currentValue": "134217728", + "source": "system-default", + "value": "134217728" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_open_files')]", + "properties": { + "currentValue": "-1", + "source": "system-default", + "value": "-1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_optimize_fulltext_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_page_cleaners')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_page_size')]", + "properties": { + "currentValue": "16384", + "source": "system-default", + "value": "16384" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_parallel_read_threads')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_print_all_deadlocks')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_print_ddl_logs')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_purge_batch_size')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_purge_rseg_truncate_frequency')]", + "properties": { + "currentValue": "128", + "source": "system-default", + "value": "128" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_purge_threads')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_random_read_ahead')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_read_ahead_threshold')]", + "properties": { + "currentValue": "56", + "source": "system-default", + "value": "56" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_read_io_threads')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_read_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_redo_log_archive_dirs')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_redo_log_capacity')]", + "properties": { + "currentValue": "536870912", + "source": "system-default", + "value": "536870912" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_redo_log_encrypt')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_replication_delay')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_rollback_on_timeout')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_rollback_segments')]", + "properties": { + "currentValue": "128", + "source": "system-default", + "value": "128" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_sort_buffer_size')]", + "properties": { + "currentValue": "1048576", + "source": "system-default", + "value": "1048576" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_spin_wait_delay')]", + "properties": { + "currentValue": "6", + "source": "system-default", + "value": "6" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_spin_wait_pause_multiplier')]", + "properties": { + "currentValue": "50", + "source": "system-default", + "value": "50" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_stats_auto_recalc')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_stats_include_delete_marked')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_stats_method')]", + "properties": { + "currentValue": "nulls_equal", + "source": "system-default", + "value": "nulls_equal" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_stats_on_metadata')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_stats_persistent')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_stats_persistent_sample_pages')]", + "properties": { + "currentValue": "20", + "source": "system-default", + "value": "20" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_stats_transient_sample_pages')]", + "properties": { + "currentValue": "8", + "source": "system-default", + "value": "8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_status_output')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_status_output_locks')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_strict_mode')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_sync_array_size')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_sync_spin_loops')]", + "properties": { + "currentValue": "30", + "source": "system-default", + "value": "30" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_table_locks')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_temp_data_file_path')]", + "properties": { + "currentValue": "ibtmp1:12M:autoextend", + "source": "system-default", + "value": "ibtmp1:12M:autoextend" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_temp_tablespaces_dir')]", + "properties": { + "currentValue": "/app/work/temp", + "source": "system-default", + "value": "/app/work/temp" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_thread_concurrency')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_thread_sleep_delay')]", + "properties": { + "currentValue": "10000", + "source": "system-default", + "value": "10000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_tmpdir')]", + "properties": { + "currentValue": "/app/work/temp", + "source": "system-default", + "value": "/app/work/temp" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_undo_directory')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_undo_log_encrypt')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_undo_log_truncate')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_use_native_aio')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_validate_tablespace_paths')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/innodb_write_io_threads')]", + "properties": { + "currentValue": "4", + "source": "system-default", + "value": "4" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/interactive_timeout')]", + "properties": { + "currentValue": "28800", + "source": "system-default", + "value": "28800" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/internal_tmp_mem_storage_engine')]", + "properties": { + "currentValue": "TempTable", + "source": "system-default", + "value": "TempTable" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/join_buffer_size')]", + "properties": { + "currentValue": "262144", + "source": "system-default", + "value": "262144" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/keep_files_on_create')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/key_buffer_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/key_cache_age_threshold')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/key_cache_block_size')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/key_cache_division_limit')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/large_pages')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/lc_time_names')]", + "properties": { + "currentValue": "en_US", + "source": "system-default", + "value": "en_US" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/local_infile')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/lock_wait_timeout')]", + "properties": { + "currentValue": "31536000", + "source": "system-default", + "value": "31536000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_bin')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_bin_trust_function_creators')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_bin_use_v1_row_events')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_error_services')]", + "properties": { + "currentValue": "log_filter_internal; log_sink_internal", + "source": "system-default", + "value": "log_filter_internal; log_sink_internal" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_error_suppression_list')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_error_verbosity')]", + "properties": { + "currentValue": "3", + "source": "system-default", + "value": "3" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_output')]", + "properties": { + "currentValue": "NONE", + "source": "system-default", + "value": "NONE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_queries_not_using_indexes')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_raw')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_slave_updates')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_slow_admin_statements')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_slow_extra')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_slow_slave_statements')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_statements_unsafe_for_binlog')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_throttle_queries_not_using_indexes')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/log_timestamps')]", + "properties": { + "currentValue": "UTC", + "source": "system-default", + "value": "UTC" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/long_query_time')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/low_priority_updates')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/lower_case_table_names')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/mandatory_roles')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/master_info_repository')]", + "properties": { + "currentValue": "TABLE", + "source": "system-default", + "value": "TABLE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/master_verify_checksum')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_allowed_packet')]", + "properties": { + "currentValue": "536870912", + "source": "system-default", + "value": "536870912" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_binlog_cache_size')]", + "properties": { + "currentValue": "18446744073709547520", + "source": "system-default", + "value": "18446744073709547520" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_binlog_size')]", + "properties": { + "currentValue": "104857600", + "source": "system-default", + "value": "104857600" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_binlog_stmt_cache_size')]", + "properties": { + "currentValue": "18446744073709547520", + "source": "system-default", + "value": "18446744073709547520" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_connect_errors')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_connections')]", + "properties": { + "currentValue": "85", + "source": "system-default", + "value": "85" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_delayed_threads')]", + "properties": { + "currentValue": "20", + "source": "system-default", + "value": "20" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_digest_length')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_error_count')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_execution_time')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_heap_table_size')]", + "properties": { + "currentValue": "16777216", + "source": "system-default", + "value": "16777216" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_join_size')]", + "properties": { + "currentValue": "18446744073709551615", + "source": "system-default", + "value": "18446744073709551615" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_length_for_sort_data')]", + "properties": { + "currentValue": "4096", + "source": "system-default", + "value": "4096" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_points_in_geometry')]", + "properties": { + "currentValue": "65536", + "source": "system-default", + "value": "65536" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_prepared_stmt_count')]", + "properties": { + "currentValue": "16382", + "source": "system-default", + "value": "16382" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_relay_log_size')]", + "properties": { + "currentValue": "104857600", + "source": "system-default", + "value": "104857600" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_seeks_for_key')]", + "properties": { + "currentValue": "18446744073709551615", + "source": "system-default", + "value": "18446744073709551615" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_sort_length')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_sp_recursion_depth')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_user_connections')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/max_write_lock_count')]", + "properties": { + "currentValue": "18446744073709551615", + "source": "system-default", + "value": "18446744073709551615" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/min_examined_row_limit')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/myisam_sort_buffer_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/mysql_native_password_proxy_users')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/mysqlx')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/net_buffer_length')]", + "properties": { + "currentValue": "16384", + "source": "system-default", + "value": "16384" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/net_read_timeout')]", + "properties": { + "currentValue": "120", + "source": "system-default", + "value": "120" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/net_retry_count')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/net_write_timeout')]", + "properties": { + "currentValue": "240", + "source": "system-default", + "value": "240" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/ngram_token_size')]", + "properties": { + "currentValue": "2", + "source": "system-default", + "value": "2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/offline_mode')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/open_files_limit')]", + "properties": { + "currentValue": "5000", + "source": "system-default", + "value": "5000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/optimizer_prune_level')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/optimizer_search_depth')]", + "properties": { + "currentValue": "62", + "source": "system-default", + "value": "62" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/optimizer_switch')]", + "properties": { + "currentValue": "default", + "source": "system-default", + "value": "default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/optimizer_trace')]", + "properties": { + "currentValue": "enabled=off,one_line=off", + "source": "system-default", + "value": "enabled=off,one_line=off" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/optimizer_trace_features')]", + "properties": { + "currentValue": "greedy_search=on,range_optimizer=on,dynamic_range=on,repeated_subselect=on", + "source": "system-default", + "value": "greedy_search=on,range_optimizer=on,dynamic_range=on,repeated_subselect=on" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/optimizer_trace_limit')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/optimizer_trace_max_mem_size')]", + "properties": { + "currentValue": "1048576", + "source": "system-default", + "value": "1048576" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/optimizer_trace_offset')]", + "properties": { + "currentValue": "-1", + "source": "system-default", + "value": "-1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/parser_max_mem_size')]", + "properties": { + "currentValue": "18446744073709551615", + "source": "system-default", + "value": "18446744073709551615" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/partial_revokes')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/password_history')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/password_require_current')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/password_reuse_interval')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_stages_current')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_stages_history')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_stages_history_long')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_statements_cpu')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_statements_current')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_statements_history')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_statements_history_long')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_transactions_current')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_transactions_history')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_transactions_history_long')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_waits_current')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_waits_history')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_events_waits_history_long')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_global_instrumentation')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_statements_digest')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_consumer_thread_instrumentation')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_instrument')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_cond_classes')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_digest_length')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_file_classes')]", + "properties": { + "currentValue": "80", + "source": "system-default", + "value": "80" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_file_handles')]", + "properties": { + "currentValue": "32768", + "source": "system-default", + "value": "32768" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_memory_classes')]", + "properties": { + "currentValue": "450", + "source": "system-default", + "value": "450" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_mutex_classes')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_rwlock_classes')]", + "properties": { + "currentValue": "60", + "source": "system-default", + "value": "60" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_socket_classes')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_sql_text_length')]", + "properties": { + "currentValue": "1024", + "source": "system-default", + "value": "1024" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_stage_classes')]", + "properties": { + "currentValue": "175", + "source": "system-default", + "value": "175" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_statement_stack')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema_max_thread_classes')]", + "properties": { + "currentValue": "100", + "source": "system-default", + "value": "100" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/persist_only_admin_x509_subject')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/persisted_globals_load')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/plugin_load')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/preload_buffer_size')]", + "properties": { + "currentValue": "32768", + "source": "system-default", + "value": "32768" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/print_identified_with_as_hex')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/profiling_history_size')]", + "properties": { + "currentValue": "15", + "source": "system-default", + "value": "15" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/protocol_compression_algorithms')]", + "properties": { + "currentValue": "zlib,zstd,uncompressed", + "source": "system-default", + "value": "zlib,zstd,uncompressed" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/query_alloc_block_size')]", + "properties": { + "currentValue": "8192", + "source": "system-default", + "value": "8192" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/query_prealloc_size')]", + "properties": { + "currentValue": "8192", + "source": "system-default", + "value": "8192" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/range_alloc_block_size')]", + "properties": { + "currentValue": "4096", + "source": "system-default", + "value": "4096" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/range_optimizer_max_mem_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/read_buffer_size')]", + "properties": { + "currentValue": "131072", + "source": "system-default", + "value": "131072" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/read_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/read_rnd_buffer_size')]", + "properties": { + "currentValue": "262144", + "source": "system-default", + "value": "262144" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/regexp_stack_limit')]", + "properties": { + "currentValue": "8000000", + "source": "system-default", + "value": "8000000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/regexp_time_limit')]", + "properties": { + "currentValue": "32", + "source": "system-default", + "value": "32" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/relay_log')]", + "properties": { + "currentValue": "/app/work/relaylogs/relay_bin", + "source": "system-default", + "value": "/app/work/relaylogs/relay_bin" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/relay_log_index')]", + "properties": { + "currentValue": "/app/work/relaylogs/relay_bin.index", + "source": "system-default", + "value": "/app/work/relaylogs/relay_bin.index" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/relay_log_info_repository')]", + "properties": { + "currentValue": "TABLE", + "source": "system-default", + "value": "TABLE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/relay_log_purge')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/relay_log_recovery')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/relay_log_space_limit')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/replicate_wild_ignore_table')]", + "properties": { + "currentValue": "mysql.%,information_schema.%,performance_schema.%,sys.%", + "source": "system-default", + "value": "mysql.%,information_schema.%,performance_schema.%,sys.%" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/require_secure_transport')]", + "properties": { + "currentValue": "OFF", + "source": "user-override", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/rpl_read_size')]", + "properties": { + "currentValue": "8388608", + "source": "system-default", + "value": "8388608" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/rpl_stop_slave_timeout')]", + "properties": { + "currentValue": "31536000", + "source": "system-default", + "value": "31536000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/schema_definition_cache')]", + "properties": { + "currentValue": "256", + "source": "system-default", + "value": "256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/secure_file_priv')]", + "properties": { + "currentValue": "NULL", + "source": "system-default", + "value": "NULL" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/server_id')]", + "properties": { + "currentValue": "3898977823", + "source": "user-override", + "value": "3898977823" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/session_track_gtids')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/session_track_schema')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/session_track_state_change')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/session_track_system_variables')]", + "properties": { + "currentValue": "time_zone, autocommit, character_set_client, character_set_results, character_set_connection", + "source": "system-default", + "value": "time_zone, autocommit, character_set_client, character_set_results, character_set_connection" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/session_track_transaction_info')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sha256_password_auto_generate_rsa_keys')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sha256_password_private_key_path')]", + "properties": { + "currentValue": "private_key.pem", + "source": "system-default", + "value": "private_key.pem" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sha256_password_proxy_users')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sha256_password_public_key_path')]", + "properties": { + "currentValue": "public_key.pem", + "source": "system-default", + "value": "public_key.pem" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/show_old_temporals')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/skip_external_locking')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/skip_name_resolve')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/skip_show_database')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/skip-slave-start')]", + "properties": { + "currentValue": "FALSE", + "source": "system-default", + "value": "FALSE" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_allow_batching')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_checkpoint_group')]", + "properties": { + "currentValue": "512", + "source": "system-default", + "value": "512" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_checkpoint_period')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_compressed_protocol')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_exec_mode')]", + "properties": { + "currentValue": "STRICT", + "source": "system-default", + "value": "STRICT" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_load_tmpdir')]", + "properties": { + "currentValue": "/app/work/temp", + "source": "system-default", + "value": "/app/work/temp" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_max_allowed_packet')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_net_timeout')]", + "properties": { + "currentValue": "60", + "source": "system-default", + "value": "60" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_parallel_type')]", + "properties": { + "currentValue": "LOGICAL_CLOCK", + "source": "system-default", + "value": "LOGICAL_CLOCK" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_parallel_workers')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_pending_jobs_size_max')]", + "properties": { + "currentValue": "16777216", + "source": "system-default", + "value": "16777216" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_preserve_commit_order')]", + "properties": { + "currentValue": "ON", + "source": "user-override", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_rows_search_algorithms')]", + "properties": { + "currentValue": "TABLE_SCAN,INDEX_SCAN", + "source": "system-default", + "value": "TABLE_SCAN,INDEX_SCAN" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_skip_errors')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_sql_verify_checksum')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_transaction_retries')]", + "properties": { + "currentValue": "10", + "source": "system-default", + "value": "10" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slave_type_conversions')]", + "properties": { + "source": "system-default" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slow_launch_time')]", + "properties": { + "currentValue": "2", + "source": "system-default", + "value": "2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slow_query_log')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/slow_query_log_file')]", + "properties": { + "currentValue": "/app/serverlogs/slowlogs/mysql-slow-mysql-odms-db-stg-2023073101.log", + "source": "user-override", + "value": "/app/serverlogs/slowlogs/mysql-slow-mysql-odms-db-stg-2023073101.log" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sort_buffer_size')]", + "properties": { + "currentValue": "524288", + "source": "system-default", + "value": "524288" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sql_mode')]", + "properties": { + "currentValue": "ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO", + "source": "user-override", + "value": "ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sql_require_primary_key')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/ssl_cipher')]", + "properties": { + "currentValue": "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-CCM:DHE-RSA-AES256-CCM:DHE-RSA-AES128-CCM8:DHE-RSA-AES256-CCM8", + "source": "system-default", + "value": "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-CCM:DHE-RSA-AES256-CCM:DHE-RSA-AES128-CCM8:DHE-RSA-AES256-CCM8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/stored_program_cache')]", + "properties": { + "currentValue": "256", + "source": "system-default", + "value": "256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/stored_program_definition_cache')]", + "properties": { + "currentValue": "256", + "source": "system-default", + "value": "256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/super_read_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sync_binlog')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sync_master_info')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sync_relay_log')]", + "properties": { + "currentValue": "0", + "source": "system-default", + "value": "0" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sync_relay_log_info')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/table_definition_cache')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/table_encryption_privilege_check')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/table_open_cache')]", + "properties": { + "currentValue": "300", + "source": "system-default", + "value": "300" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/table_open_cache_instances')]", + "properties": { + "currentValue": "16", + "source": "system-default", + "value": "16" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/tablespace_definition_cache')]", + "properties": { + "currentValue": "256", + "source": "system-default", + "value": "256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/temptable_max_ram')]", + "properties": { + "currentValue": "1073741824", + "source": "system-default", + "value": "1073741824" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/temptable_use_mmap')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_cache_size')]", + "properties": { + "currentValue": "8", + "source": "system-default", + "value": "8" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_handling')]", + "properties": { + "currentValue": "one-thread-per-connection", + "source": "system-default", + "value": "one-thread-per-connection" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_pool_batch_max_time')]", + "properties": { + "currentValue": "30000", + "source": "system-default", + "value": "30000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_pool_batch_wait_timeout')]", + "properties": { + "currentValue": "10000", + "source": "system-default", + "value": "10000" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_pool_idle_timeout')]", + "properties": { + "currentValue": "60", + "source": "system-default", + "value": "60" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_pool_new_conn_high_prio')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_pool_size')]", + "properties": { + "currentValue": "1", + "source": "system-default", + "value": "1" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_pool_stall_limit')]", + "properties": { + "currentValue": "500", + "source": "system-default", + "value": "500" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/thread_stack')]", + "properties": { + "currentValue": "286720", + "source": "system-default", + "value": "286720" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/time_zone')]", + "properties": { + "currentValue": "+00:00", + "source": "system-default", + "value": "+00:00" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/tls_ciphersuites')]", + "properties": { + "currentValue": "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256", + "source": "system-default", + "value": "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/tls_version')]", + "properties": { + "currentValue": "TLSv1.2", + "source": "system-default", + "value": "TLSv1.2" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/tmp_table_size')]", + "properties": { + "currentValue": "16777216", + "source": "system-default", + "value": "16777216" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/tmpdir')]", + "properties": { + "currentValue": "/app/work/temp", + "source": "system-default", + "value": "/app/work/temp" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/transaction_alloc_block_size')]", + "properties": { + "currentValue": "8192", + "source": "system-default", + "value": "8192" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/transaction_isolation')]", + "properties": { + "currentValue": "REPEATABLE-READ", + "source": "system-default", + "value": "REPEATABLE-READ" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/transaction_prealloc_size')]", + "properties": { + "currentValue": "4096", + "source": "system-default", + "value": "4096" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/transaction_read_only')]", + "properties": { + "currentValue": "OFF", + "source": "system-default", + "value": "OFF" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/transaction_write_set_extraction')]", + "properties": { + "currentValue": "XXHASH64", + "source": "system-default", + "value": "XXHASH64" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/updatable_views_with_limit')]", + "properties": { + "currentValue": "YES", + "source": "system-default", + "value": "YES" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/validate_user_plugins')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/wait_timeout')]", + "properties": { + "currentValue": "28800", + "source": "system-default", + "value": "28800" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/windowing_use_high_precision')]", + "properties": { + "currentValue": "ON", + "source": "system-default", + "value": "ON" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/configurations" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/information_schema')]", + "properties": { + "charset": "utf8mb3", + "collation": "utf8mb3_general_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/mysql')]", + "properties": { + "charset": "utf8mb4", + "collation": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/odms')]", + "properties": { + "charset": "utf8mb4", + "collation": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/performance_schema')]", + "properties": { + "charset": "utf8mb4", + "collation": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/sys')]", + "properties": { + "charset": "utf8mb4", + "collation": "utf8mb4_0900_ai_ci" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/databases" + }, + { + "apiVersion": "2022-01-01", + "dependsOn": [ + "[resourceId('Microsoft.DBforMySQL/flexibleServers', parameters('flexibleServers_mysql_odms_db_stg_name'))]" + ], + "name": "[concat(parameters('flexibleServers_mysql_odms_db_stg_name'), '/ClientIPAddress_2023-6-20_11-44-56')]", + "properties": { + "endIpAddress": "118.238.231.215", + "startIpAddress": "118.238.231.215" + }, + "type": "Microsoft.DBforMySQL/flexibleServers/firewallRules" + } + ], + "variables": {} +} diff --git a/configurations/azure/stg-network-rg.json b/configurations/azure/stg-network-rg.json new file mode 100644 index 0000000..402aae2 --- /dev/null +++ b/configurations/azure/stg-network-rg.json @@ -0,0 +1,11184 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "ApplicationGatewayWebApplicationFirewallPolicies_waf_odms_agw_stg_name": { + "type": "String" + }, + "applicationGateways_agw_odms_webapp_stg_name": { + "type": "String" + }, + "networkInterfaces_pep_odms_app_stg_nic_name": { + "type": "String" + }, + "networkInterfaces_pep_odms_staapp_stg_nic_d58d299d_2cc3_43df_95f1_fdf31a27489d_name": { + "type": "String" + }, + "networkSecurityGroups_nsg_odms_gateway_stg_name": { + "type": "String" + }, + "networkSecurityGroups_nsg_odms_private_stg_name": { + "type": "String" + }, + "networkSecurityGroups_nsg_odms_public_stg_name": { + "type": "String" + }, + "privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name": { + "type": "String" + }, + "privateDnsZones_privatelink_2azurewebsites_net_name": { + "type": "String" + }, + "privateDnsZones_privatelink_3_azurestaticapps_net_name": { + "type": "String" + }, + "privateDnsZones_privatelink_azurewebsites_net_name": { + "type": "String" + }, + "privateDnsZones_privatelink_redis_cache_windows_net_name": { + "type": "String" + }, + "privateEndpoints_pep_odms_app_stg_name": { + "type": "String" + }, + "privateEndpoints_pep_odms_staapp_stg_name": { + "type": "String" + }, + "publicIPAddresses_pip_odms_app_stg_name": { + "type": "String" + }, + "sites_app_odms_dictation_stg_externalid": { + "type": "String" + }, + "staticSites_staapp_odms_dictation_stg_externalid": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_maintenance_externalid": { + "type": "String" + }, + "virtualNetworks_vnet_odms_network_stg_name": { + "type": "String" + }, + "workspaces_log_odms_agw_stg_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('ApplicationGatewayWebApplicationFirewallPolicies_waf_odms_agw_stg_name')]", + "properties": { + "customRules": [], + "managedRules": { + "exclusions": [ + { + "exclusionManagedRuleSets": [ + { + "ruleGroups": [ + { + "ruleGroupName": "REQUEST-931-APPLICATION-ATTACK-RFI", + "rules": [ + { + "ruleId": "931130" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ], + "matchVariable": "RequestArgNames", + "selector": "url", + "selectorMatchOperator": "Equals" + }, + { + "exclusionManagedRuleSets": [ + { + "ruleGroups": [ + { + "ruleGroupName": "REQUEST-942-APPLICATION-ATTACK-SQLI", + "rules": [ + { + "ruleId": "942100" + }, + { + "ruleId": "942110" + }, + { + "ruleId": "942120" + }, + { + "ruleId": "942130" + }, + { + "ruleId": "942140" + }, + { + "ruleId": "942150" + }, + { + "ruleId": "942160" + }, + { + "ruleId": "942170" + }, + { + "ruleId": "942180" + }, + { + "ruleId": "942190" + }, + { + "ruleId": "942200" + }, + { + "ruleId": "942210" + }, + { + "ruleId": "942220" + }, + { + "ruleId": "942230" + }, + { + "ruleId": "942240" + }, + { + "ruleId": "942250" + }, + { + "ruleId": "942251" + }, + { + "ruleId": "942260" + }, + { + "ruleId": "942270" + }, + { + "ruleId": "942280" + }, + { + "ruleId": "942290" + }, + { + "ruleId": "942300" + }, + { + "ruleId": "942310" + }, + { + "ruleId": "942320" + }, + { + "ruleId": "942330" + }, + { + "ruleId": "942340" + }, + { + "ruleId": "942350" + }, + { + "ruleId": "942360" + }, + { + "ruleId": "942361" + }, + { + "ruleId": "942370" + }, + { + "ruleId": "942380" + }, + { + "ruleId": "942390" + }, + { + "ruleId": "942400" + }, + { + "ruleId": "942410" + }, + { + "ruleId": "942420" + }, + { + "ruleId": "942421" + }, + { + "ruleId": "942431" + }, + { + "ruleId": "942432" + }, + { + "ruleId": "942440" + }, + { + "ruleId": "942450" + }, + { + "ruleId": "942460" + }, + { + "ruleId": "942470" + }, + { + "ruleId": "942480" + }, + { + "ruleId": "942490" + }, + { + "ruleId": "942500" + }, + { + "ruleId": "942430" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ], + "matchVariable": "RequestArgNames", + "selector": "token", + "selectorMatchOperator": "Equals" + }, + { + "exclusionManagedRuleSets": [ + { + "ruleGroups": [ + { + "ruleGroupName": "REQUEST-942-APPLICATION-ATTACK-SQLI", + "rules": [ + { + "ruleId": "942100" + }, + { + "ruleId": "942110" + }, + { + "ruleId": "942120" + }, + { + "ruleId": "942130" + }, + { + "ruleId": "942140" + }, + { + "ruleId": "942150" + }, + { + "ruleId": "942160" + }, + { + "ruleId": "942170" + }, + { + "ruleId": "942180" + }, + { + "ruleId": "942190" + }, + { + "ruleId": "942200" + }, + { + "ruleId": "942210" + }, + { + "ruleId": "942220" + }, + { + "ruleId": "942230" + }, + { + "ruleId": "942240" + }, + { + "ruleId": "942250" + }, + { + "ruleId": "942251" + }, + { + "ruleId": "942260" + }, + { + "ruleId": "942270" + }, + { + "ruleId": "942280" + }, + { + "ruleId": "942290" + }, + { + "ruleId": "942300" + }, + { + "ruleId": "942310" + }, + { + "ruleId": "942320" + }, + { + "ruleId": "942330" + }, + { + "ruleId": "942340" + }, + { + "ruleId": "942350" + }, + { + "ruleId": "942360" + }, + { + "ruleId": "942361" + }, + { + "ruleId": "942370" + }, + { + "ruleId": "942380" + }, + { + "ruleId": "942390" + }, + { + "ruleId": "942400" + }, + { + "ruleId": "942410" + }, + { + "ruleId": "942420" + }, + { + "ruleId": "942421" + }, + { + "ruleId": "942430" + }, + { + "ruleId": "942431" + }, + { + "ruleId": "942432" + }, + { + "ruleId": "942440" + }, + { + "ruleId": "942450" + }, + { + "ruleId": "942460" + }, + { + "ruleId": "942470" + }, + { + "ruleId": "942480" + }, + { + "ruleId": "942490" + }, + { + "ruleId": "942500" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ], + "matchVariable": "RequestArgNames", + "selector": "verify", + "selectorMatchOperator": "Equals" + }, + { + "exclusionManagedRuleSets": [ + { + "ruleGroups": [ + { + "ruleGroupName": "REQUEST-942-APPLICATION-ATTACK-SQLI", + "rules": [ + { + "ruleId": "942440" + } + ] + } + ], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ], + "matchVariable": "RequestArgNames", + "selector": "idToken", + "selectorMatchOperator": "Equals" + } + ], + "managedRuleSets": [ + { + "ruleGroupOverrides": [], + "ruleSetType": "OWASP", + "ruleSetVersion": "3.2" + } + ] + }, + "policySettings": { + "fileUploadEnforcement": true, + "fileUploadLimitInMb": 100, + "maxRequestBodySizeInKb": 128, + "mode": "Prevention", + "requestBodyCheck": true, + "requestBodyEnforcement": true, + "requestBodyInspectLimitInKB": 128, + "state": "Enabled" + } + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('networkSecurityGroups_nsg_odms_gateway_stg_name')]", + "properties": { + "securityRules": [ + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundNDS')]", + "name": "AllowCidrBlockHTTPSInboundNDS", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 901, + "protocol": "TCP", + "sourceAddressPrefix": "118.238.231.215/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSJP01')]", + "name": "AllowCidrBlockHTTPSInboundOMDSJP01", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 201, + "protocol": "TCP", + "sourceAddressPrefix": "165.225.110.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSJP02')]", + "name": "AllowCidrBlockHTTPSInboundOMDSJP02", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 202, + "protocol": "TCP", + "sourceAddressPrefix": "165.225.96.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSJP03')]", + "name": "AllowCidrBlockHTTPSInboundOMDSJP03", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 203, + "protocol": "TCP", + "sourceAddressPrefix": "147.161.198.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSJP04')]", + "name": "AllowCidrBlockHTTPSInboundOMDSJP04", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 204, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.238.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSUS01')]", + "name": "AllowCidrBlockHTTPSInboundOMDSUS01", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 301, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.48.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSUS02')]", + "name": "AllowCidrBlockHTTPSInboundOMDSUS02", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 302, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.52.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSUS03')]", + "name": "AllowCidrBlockHTTPSInboundOMDSUS03", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 303, + "protocol": "TCP", + "sourceAddressPrefix": "165.225.48.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSUS04')]", + "name": "AllowCidrBlockHTTPSInboundOMDSUS04", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 304, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.50.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSUS05')]", + "name": "AllowCidrBlockHTTPSInboundOMDSUS05", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 305, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.68.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSUS06')]", + "name": "AllowCidrBlockHTTPSInboundOMDSUS06", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 306, + "protocol": "TCP", + "sourceAddressPrefix": "165.225.8.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSSC01')]", + "name": "AllowCidrBlockHTTPSInboundOMDSSC01", + "properties": { + "access": "Allow", + "description": "SubcontractorFϑ", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 401, + "protocol": "TCP", + "sourceAddressPrefix": "118.238.242.24/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSSC02')]", + "name": "AllowCidrBlockHTTPSInboundOMDSSC02", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 402, + "protocol": "TCP", + "sourceAddressPrefix": "221.186.97.190/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowTagCustom65200-65535Inbound')]", + "name": "AllowTagCustom65200-65535Inbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "65200-65535", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 100, + "protocol": "TCP", + "sourceAddressPrefix": "GatewayManager", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'DenyAnyHTTPSInbound')]", + "name": "DenyAnyHTTPSInbound", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1000, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSTestTeam01')]", + "name": "AllowCidrBlockHTTPSInboundOMDSTestTeam01", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 501, + "protocol": "TCP", + "sourceAddressPrefix": "218.45.230.138/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundIwataHome')]", + "name": "AllowCidrBlockHTTPSInboundIwataHome", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 902, + "protocol": "TCP", + "sourceAddressPrefix": "126.74.195.84/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOMDSSC03')]", + "name": "AllowCidrBlockHTTPSInboundOMDSSC03", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 403, + "protocol": "TCP", + "sourceAddressPrefix": "103.121.26.242/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), 'AllowCidrBlockHTTPSInboundOkuzawa')]", + "name": "AllowCidrBlockHTTPSInboundOkuzawa", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 903, + "protocol": "TCP", + "sourceAddressPrefix": "211.125.140.74", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + } + ] + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkSecurityGroups" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('networkSecurityGroups_nsg_odms_private_stg_name')]", + "properties": { + "securityRules": [ + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_stg_name'), 'bastionVMInbound')]", + "name": "bastionVMInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1003, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_stg_name'), 'bastionStagingVMInbound')]", + "name": "bastionStagingVMInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1004, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.5/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_stg_name'), 'AllowAppServiceInbound')]", + "name": "AllowAppServiceInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1001, + "protocol": "TCP", + "sourceAddressPrefix": "10.2.4.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_stg_name'), 'DenyAllInbound')]", + "name": "DenyAllInbound", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_private_stg_name'), 'AllowDeployMigrationInbound')]", + "name": "AllowDeployMigrationInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1005, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.4.4/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + } + ] + }, + "tags": { + "Environment": "stg", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkSecurityGroups" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('networkSecurityGroups_nsg_odms_public_stg_name')]", + "properties": { + "securityRules": [ + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_public_stg_name'), 'AllowCidrBlockCustomAnyInbound')]", + "name": "AllowCidrBlockCustomAnyInbound", + "properties": { + "access": "Allow", + "description": "10.1.0.0/24iapplication gateway̏Tulbgj̎M", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 100, + "protocol": "*", + "sourceAddressPrefix": "10.2.0.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups/securityRules', parameters('networkSecurityGroups_nsg_odms_public_stg_name'), 'AllowAnyCustomAnyInbound')]", + "name": "AllowAnyCustomAnyInbound", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 110, + "protocol": "*", + "sourceAddressPrefix": "20.210.206.188/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + } + ] + }, + "tags": { + "Environment": "stg", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkSecurityGroups" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 3, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_2azurewebsites_net_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 3, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 2, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_azurewebsites_net_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 3, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "tags": { + "Environment": "staging" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2018-09-01", + "location": "global", + "name": "[parameters('privateDnsZones_privatelink_redis_cache_windows_net_name')]", + "properties": { + "maxNumberOfRecordSets": 25000, + "maxNumberOfVirtualNetworkLinks": 1000, + "maxNumberOfVirtualNetworkLinksWithRegistration": 100, + "numberOfRecordSets": 2, + "numberOfVirtualNetworkLinks": 0, + "numberOfVirtualNetworkLinksWithRegistration": 0, + "provisioningState": "Succeeded" + }, + "type": "Microsoft.Network/privateDnsZones" + }, + { + "apiVersion": "2022-11-01", + "location": "japaneast", + "name": "[parameters('publicIPAddresses_pip_odms_app_stg_name')]", + "properties": { + "idleTimeoutInMinutes": 4, + "ipAddress": "20.210.206.188", + "ipTags": [], + "publicIPAddressVersion": "IPv4", + "publicIPAllocationMethod": "Static" + }, + "sku": { + "name": "Standard", + "tier": "Regional" + }, + "type": "Microsoft.Network/publicIPAddresses" + }, + { + "apiVersion": "2021-12-01-preview", + "location": "japaneast", + "name": "[parameters('workspaces_log_odms_agw_stg_name')]", + "properties": { + "features": { + "enableLogAccessUsingOnlyResourcePermissions": true + }, + "publicNetworkAccessForIngestion": "Enabled", + "publicNetworkAccessForQuery": "Enabled", + "retentionInDays": 30, + "sku": { + "name": "pergb2018" + }, + "workspaceCapping": { + "dailyQuotaGb": -1.0 + } + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.OperationalInsights/workspaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_pep_odms_app_stg_nic_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"e61b4615-9d04-40e6-acbf-92f5ddecbfd0\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_app_stg_nic_name')), '/ipConfigurations/privateEndpointIpConfig.3f05704c-05da-42eb-b5a6-91abc04472d6')]", + "name": "privateEndpointIpConfig.3f05704c-05da-42eb-b5a6-91abc04472d6", + "properties": { + "primary": true, + "privateIPAddress": "10.2.1.4", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "app-odms-dictation-stg.azurewebsites.net", + "app-odms-dictation-stg.scm.azurewebsites.net" + ], + "groupId": "sites", + "requiredMemberName": "sites" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + ], + "kind": "Regular", + "location": "japaneast", + "name": "[parameters('networkInterfaces_pep_odms_staapp_stg_nic_d58d299d_2cc3_43df_95f1_fdf31a27489d_name')]", + "properties": { + "disableTcpStateTracking": false, + "dnsSettings": { + "dnsServers": [] + }, + "enableAcceleratedNetworking": false, + "enableIPForwarding": false, + "ipConfigurations": [ + { + "etag": "W/\"a3dfe0c6-87d7-44be-beac-02c52ef7c1e9\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_staapp_stg_nic_d58d299d_2cc3_43df_95f1_fdf31a27489d_name')), '/ipConfigurations/privateEndpointIpConfig.f54c9d44-0dbf-4739-910c-fcce2e7a23ae')]", + "name": "privateEndpointIpConfig.f54c9d44-0dbf-4739-910c-fcce2e7a23ae", + "properties": { + "primary": true, + "privateIPAddress": "10.2.1.5", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [ + "purple-forest-07b9d5300.3.azurestaticapps.net" + ], + "groupId": "staticSites", + "requiredMemberName": "staticSites" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + }, + { + "etag": "W/\"a3dfe0c6-87d7-44be-beac-02c52ef7c1e9\"", + "id": "[concat(resourceId('Microsoft.Network/networkInterfaces', parameters('networkInterfaces_pep_odms_staapp_stg_nic_d58d299d_2cc3_43df_95f1_fdf31a27489d_name')), '/ipConfigurations/privateEndpointIpConfig.b056a23e-633f-4ce9-a9ce-4a3e386bb1bc')]", + "name": "privateEndpointIpConfig.b056a23e-633f-4ce9-a9ce-4a3e386bb1bc", + "properties": { + "primary": false, + "privateIPAddress": "10.2.1.6", + "privateIPAddressVersion": "IPv4", + "privateIPAllocationMethod": "Dynamic", + "privateLinkConnectionProperties": { + "fqdns": [], + "groupId": "staticSites", + "requiredMemberName": "staticSites-staging" + }, + "provisioningState": "Succeeded", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + } + }, + "type": "Microsoft.Network/networkInterfaces/ipConfigurations" + } + ], + "nicType": "Standard" + }, + "type": "Microsoft.Network/networkInterfaces" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_public_stg_name'), '/AllowAnyCustomAnyInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 110, + "protocol": "*", + "sourceAddressPrefix": "20.210.206.188/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_stg_name'), '/AllowAppServiceInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1001, + "protocol": "TCP", + "sourceAddressPrefix": "10.2.4.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_public_stg_name'), '/AllowCidrBlockCustomAnyInbound')]", + "properties": { + "access": "Allow", + "description": "10.1.0.0/24iapplication gateway̏Tulbgj̎M", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 100, + "protocol": "*", + "sourceAddressPrefix": "10.2.0.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundIwataHome')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 902, + "protocol": "TCP", + "sourceAddressPrefix": "126.74.195.84/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundNDS')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 901, + "protocol": "TCP", + "sourceAddressPrefix": "118.238.231.215/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOkuzawa')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 903, + "protocol": "TCP", + "sourceAddressPrefix": "211.125.140.74", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSJP01')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 201, + "protocol": "TCP", + "sourceAddressPrefix": "165.225.110.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSJP02')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 202, + "protocol": "TCP", + "sourceAddressPrefix": "165.225.96.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSJP03')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 203, + "protocol": "TCP", + "sourceAddressPrefix": "147.161.198.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSJP04')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 204, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.238.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSSC01')]", + "properties": { + "access": "Allow", + "description": "SubcontractorFϑ", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 401, + "protocol": "TCP", + "sourceAddressPrefix": "118.238.242.24/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSSC02')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 402, + "protocol": "TCP", + "sourceAddressPrefix": "221.186.97.190/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSSC03')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 403, + "protocol": "TCP", + "sourceAddressPrefix": "103.121.26.242/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSTestTeam01')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 501, + "protocol": "TCP", + "sourceAddressPrefix": "218.45.230.138/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSUS01')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 301, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.48.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSUS02')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 302, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.52.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSUS03')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 303, + "protocol": "TCP", + "sourceAddressPrefix": "165.225.48.0/24", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSUS04')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 304, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.50.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSUS05')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 305, + "protocol": "TCP", + "sourceAddressPrefix": "136.226.68.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowCidrBlockHTTPSInboundOMDSUS06')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 306, + "protocol": "TCP", + "sourceAddressPrefix": "165.225.8.0/23", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_stg_name'), '/AllowDeployMigrationInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1005, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.4.4/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/AllowTagCustom65200-65535Inbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "65200-65535", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 100, + "protocol": "TCP", + "sourceAddressPrefix": "GatewayManager", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_stg_name'), '/bastionStagingVMInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1004, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.5/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_stg_name'), '/bastionVMInbound')]", + "properties": { + "access": "Allow", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "3306", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1003, + "protocol": "TCP", + "sourceAddressPrefix": "10.0.2.4/32", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_private_stg_name'), '/DenyAllInbound')]", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "*", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 4096, + "protocol": "*", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + ], + "name": "[concat(parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'), '/DenyAnyHTTPSInbound')]", + "properties": { + "access": "Deny", + "destinationAddressPrefix": "*", + "destinationAddressPrefixes": [], + "destinationPortRange": "443", + "destinationPortRanges": [], + "direction": "Inbound", + "priority": 1000, + "protocol": "TCP", + "sourceAddressPrefix": "*", + "sourceAddressPrefixes": [], + "sourcePortRange": "*", + "sourcePortRanges": [] + }, + "type": "Microsoft.Network/networkSecurityGroups/securityRules" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_2azurewebsites_net_name'), '/app-odms-dictation-stg')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.2.1.4" + } + ], + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/app-odms-dictation-stg')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.2.1.4" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-app-stg with resource guid daa0945d-5d14-47e1-beeb-d2fdb7241721" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_2azurewebsites_net_name'), '/app-odms-dictation-stg.scm')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.2.1.4" + } + ], + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/app-odms-dictation-stg.scm')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.2.1.4" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-app-stg with resource guid daa0945d-5d14-47e1-beeb-d2fdb7241721" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'), '/mysql-odms-db-stg')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.2.2.4" + } + ], + "ttl": 30 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'), '/mysql-odms-stg')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.2.2.5" + } + ], + "ttl": 30 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name'), '/purple-forest-07b9d5300')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.2.1.5" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-staapp-stg with resource guid 8d0fc994-cd30-4106-a8a5-25b48fc200f5" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'), '/redis-odms-cache-stg')]", + "properties": { + "aRecords": [ + { + "ipv4Address": "10.2.1.7" + } + ], + "metadata": { + "creator": "created by private endpoint pep-odms-redis-stg with resource guid 99c38c65-e399-49ed-9b22-a95a3ddb3bc0" + }, + "ttl": 10 + }, + "type": "Microsoft.Network/privateDnsZones/A" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_2azurewebsites_net_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'))]" + ], + "name": "[concat(parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'), '/@')]", + "properties": { + "soaRecord": { + "email": "azureprivatedns-host.microsoft.com", + "expireTime": 2419200, + "host": "azureprivatedns.net", + "minimumTtl": 10, + "refreshTime": 3600, + "retryTime": 300, + "serialNumber": 1 + }, + "ttl": 3600 + }, + "type": "Microsoft.Network/privateDnsZones/SOA" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2azurewebsites_net_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_2azurewebsites_net_name'), '/link-odms-maintenance-stg')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_maintenance_externalid')]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'), '/maintenance')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_maintenance_externalid')]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_pep_odms_app_stg_name')]", + "properties": { + "customDnsConfigs": [], + "customNetworkInterfaceName": "[concat(parameters('privateEndpoints_pep_odms_app_stg_name'), '-nic')]", + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_app_stg_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_pep_odms_app_stg_name')))]", + "name": "[parameters('privateEndpoints_pep_odms_app_stg_name')]", + "properties": { + "groupIds": [ + "sites" + ], + "privateLinkServiceConnectionState": { + "actionsRequired": "None", + "status": "Approved" + }, + "privateLinkServiceId": "[parameters('sites_app_odms_dictation_stg_externalid')]" + } + } + ], + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + } + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + ], + "location": "japaneast", + "name": "[parameters('privateEndpoints_pep_odms_staapp_stg_name')]", + "properties": { + "customDnsConfigs": [], + "ipConfigurations": [], + "manualPrivateLinkServiceConnections": [], + "privateLinkServiceConnections": [ + { + "id": "[concat(resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_staapp_stg_name')), concat('/privateLinkServiceConnections/', parameters('privateEndpoints_pep_odms_staapp_stg_name'), '-8eba'))]", + "name": "[concat(parameters('privateEndpoints_pep_odms_staapp_stg_name'), '-8eba')]", + "properties": { + "groupIds": [ + "staticSites" + ], + "privateLinkServiceConnectionState": { + "status": "Approved" + }, + "privateLinkServiceId": "[parameters('staticSites_staapp_odms_dictation_stg_externalid')]" + } + } + ], + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]" + } + }, + "type": "Microsoft.Network/privateEndpoints" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_stg_name'), '/snet-odms-endpoint-stg')]", + "properties": { + "addressPrefix": "10.2.3.0/24", + "delegations": [], + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_stg_name'), '/peer-odms-maintenance-stg')]", + "properties": { + "allowForwardedTraffic": true, + "allowGatewayTransit": false, + "allowVirtualNetworkAccess": true, + "doNotVerifyRemoteGateways": false, + "peeringState": "Connected", + "peeringSyncLevel": "FullyInSync", + "remoteAddressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "remoteVirtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_maintenance_externalid')]" + }, + "remoteVirtualNetworkAddressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "useRemoteGateways": false + }, + "type": "Microsoft.Network/virtualNetworks/virtualNetworkPeerings" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_General|AlphabeticallySortedComputers')]", + "properties": { + "category": "General Exploration", + "displayName": "All Computers with their most recent data", + "query": "search not(ObjectName == \"Advisor Metrics\" or ObjectName == \"ManagedSpace\") | summarize AggregatedValue = max(TimeGenerated) by Computer | limit 500000 | sort by Computer asc\r\n// Oql: NOT(ObjectName=\"Advisor Metrics\" OR ObjectName=ManagedSpace) | measure max(TimeGenerated) by Computer | top 500000 | Sort Computer // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_General|dataPointsPerManagementGroup')]", + "properties": { + "category": "General Exploration", + "displayName": "Which Management Group is generating the most data points?", + "query": "search * | summarize AggregatedValue = count() by ManagementGroupName\r\n// Oql: * | Measure count() by ManagementGroupName // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_General|dataTypeDistribution')]", + "properties": { + "category": "General Exploration", + "displayName": "Distribution of data Types", + "query": "search * | extend Type = $table | summarize AggregatedValue = count() by Type\r\n// Oql: * | Measure count() by Type // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_General|StaleComputers')]", + "properties": { + "category": "General Exploration", + "displayName": "Stale Computers (data older than 24 hours)", + "query": "search not(ObjectName == \"Advisor Metrics\" or ObjectName == \"ManagedSpace\") | summarize lastdata = max(TimeGenerated) by Computer | limit 500000 | where lastdata < ago(24h)\r\n// Oql: NOT(ObjectName=\"Advisor Metrics\" OR ObjectName=ManagedSpace) | measure max(TimeGenerated) as lastdata by Computer | top 500000 | where lastdata < NOW-24HOURS // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|AllEvents')]", + "properties": { + "category": "Log Management", + "displayName": "All Events", + "query": "Event | sort by TimeGenerated desc\r\n// Oql: Type=Event // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|AllSyslog')]", + "properties": { + "category": "Log Management", + "displayName": "All Syslogs", + "query": "Syslog | sort by TimeGenerated desc\r\n// Oql: Type=Syslog // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|AllSyslogByFacility')]", + "properties": { + "category": "Log Management", + "displayName": "All Syslog Records grouped by Facility", + "query": "Syslog | summarize AggregatedValue = count() by Facility\r\n// Oql: Type=Syslog | Measure count() by Facility // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|AllSyslogByProcessName')]", + "properties": { + "category": "Log Management", + "displayName": "All Syslog Records grouped by ProcessName", + "query": "Syslog | summarize AggregatedValue = count() by ProcessName\r\n// Oql: Type=Syslog | Measure count() by ProcessName // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|AllSyslogsWithErrors')]", + "properties": { + "category": "Log Management", + "displayName": "All Syslog Records with Errors", + "query": "Syslog | where SeverityLevel == \"error\" | sort by TimeGenerated desc\r\n// Oql: Type=Syslog SeverityLevel=error // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|AverageHTTPRequestTimeByClientIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Average HTTP Request time by Client IP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = avg(TimeTaken) by cIP\r\n// Oql: Type=W3CIISLog | Measure Avg(TimeTaken) by cIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|AverageHTTPRequestTimeHTTPMethod')]", + "properties": { + "category": "Log Management", + "displayName": "Average HTTP Request time by HTTP Method", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = avg(TimeTaken) by csMethod\r\n// Oql: Type=W3CIISLog | Measure Avg(TimeTaken) by csMethod // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|CountIISLogEntriesClientIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by Client IP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by cIP\r\n// Oql: Type=W3CIISLog | Measure count() by cIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|CountIISLogEntriesHTTPRequestMethod')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by HTTP Request Method", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csMethod\r\n// Oql: Type=W3CIISLog | Measure count() by csMethod // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|CountIISLogEntriesHTTPUserAgent')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by HTTP User Agent", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csUserAgent\r\n// Oql: Type=W3CIISLog | Measure count() by csUserAgent // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|CountOfIISLogEntriesByHostRequestedByClient')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by Host requested by client", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csHost\r\n// Oql: Type=W3CIISLog | Measure count() by csHost // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|CountOfIISLogEntriesByURLForHost')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by URL for the host \"www.contoso.com\" (replace with your own)", + "query": "search csHost == \"www.contoso.com\" | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csUriStem\r\n// Oql: Type=W3CIISLog csHost=\"www.contoso.com\" | Measure count() by csUriStem // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|CountOfIISLogEntriesByURLRequestedByClient')]", + "properties": { + "category": "Log Management", + "displayName": "Count of IIS Log Entries by URL requested by client (without query strings)", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csUriStem\r\n// Oql: Type=W3CIISLog | Measure count() by csUriStem // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|CountOfWarningEvents')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events with level \"Warning\" grouped by Event ID", + "query": "Event | where EventLevelName == \"warning\" | summarize AggregatedValue = count() by EventID\r\n// Oql: Type=Event EventLevelName=warning | Measure count() by EventID // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|DisplayBreakdownRespondCodes')]", + "properties": { + "category": "Log Management", + "displayName": "Shows breakdown of response codes", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by scStatus\r\n// Oql: Type=W3CIISLog | Measure count() by scStatus // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|EventsByEventLog')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events grouped by Event Log", + "query": "Event | summarize AggregatedValue = count() by EventLog\r\n// Oql: Type=Event | Measure count() by EventLog // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|EventsByEventsID')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events grouped by Event ID", + "query": "Event | summarize AggregatedValue = count() by EventID\r\n// Oql: Type=Event | Measure count() by EventID // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|EventsByEventSource')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events grouped by Event Source", + "query": "Event | summarize AggregatedValue = count() by Source\r\n// Oql: Type=Event | Measure count() by Source // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|EventsInOMBetween2000to3000')]", + "properties": { + "category": "Log Management", + "displayName": "Events in the Operations Manager Event Log whose Event ID is in the range between 2000 and 3000", + "query": "Event | where EventLog == \"Operations Manager\" and EventID >= 2000 and EventID <= 3000 | sort by TimeGenerated desc\r\n// Oql: Type=Event EventLog=\"Operations Manager\" EventID:[2000..3000] // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|EventsWithStartedinEventID')]", + "properties": { + "category": "Log Management", + "displayName": "Count of Events containing the word \"started\" grouped by EventID", + "query": "search in (Event) \"started\" | summarize AggregatedValue = count() by EventID\r\n// Oql: Type=Event \"started\" | Measure count() by EventID // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|FindMaximumTimeTakenForEachPage')]", + "properties": { + "category": "Log Management", + "displayName": "Find the maximum time taken for each page", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = max(TimeTaken) by csUriStem\r\n// Oql: Type=W3CIISLog | Measure Max(TimeTaken) by csUriStem // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|IISLogEntriesForClientIP')]", + "properties": { + "category": "Log Management", + "displayName": "IIS Log Entries for a specific client IP Address (replace with your own)", + "query": "search cIP == \"192.168.0.1\" | extend Type = $table | where Type == W3CIISLog | sort by TimeGenerated desc | project csUriStem, scBytes, csBytes, TimeTaken, scStatus\r\n// Oql: Type=W3CIISLog cIP=\"192.168.0.1\" | Select csUriStem,scBytes,csBytes,TimeTaken,scStatus // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|ListAllIISLogEntries')]", + "properties": { + "category": "Log Management", + "displayName": "All IIS Log Entries", + "query": "search * | extend Type = $table | where Type == W3CIISLog | sort by TimeGenerated desc\r\n// Oql: Type=W3CIISLog // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|NoOfConnectionsToOMSDKService')]", + "properties": { + "category": "Log Management", + "displayName": "How many connections to Operations Manager's SDK service by day", + "query": "Event | where EventID == 26328 and EventLog == \"Operations Manager\" | summarize AggregatedValue = count() by bin(TimeGenerated, 1d) | sort by TimeGenerated desc\r\n// Oql: Type=Event EventID=26328 EventLog=\"Operations Manager\" | Measure count() interval 1DAY // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|ServerRestartTime')]", + "properties": { + "category": "Log Management", + "displayName": "When did my servers initiate restart?", + "query": "search in (Event) \"shutdown\" and EventLog == \"System\" and Source == \"User32\" and EventID == 1074 | sort by TimeGenerated desc | project TimeGenerated, Computer\r\n// Oql: shutdown Type=Event EventLog=System Source=User32 EventID=1074 | Select TimeGenerated,Computer // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|Show404PagesList')]", + "properties": { + "category": "Log Management", + "displayName": "Shows which pages people are getting a 404 for", + "query": "search scStatus == 404 | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by csUriStem\r\n// Oql: Type=W3CIISLog scStatus=404 | Measure count() by csUriStem // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|ShowServersThrowingInternalServerError')]", + "properties": { + "category": "Log Management", + "displayName": "Shows servers that are throwing internal server error", + "query": "search scStatus == 500 | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = count() by sComputerName\r\n// Oql: Type=W3CIISLog scStatus=500 | Measure count() by sComputerName // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|TotalBytesReceivedByEachAzureRoleInstance')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes received by each Azure Role Instance", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(csBytes) by RoleInstance\r\n// Oql: Type=W3CIISLog | Measure Sum(csBytes) by RoleInstance // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|TotalBytesReceivedByEachIISComputer')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes received by each IIS Computer", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(csBytes) by Computer | limit 500000\r\n// Oql: Type=W3CIISLog | Measure Sum(csBytes) by Computer | top 500000 // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|TotalBytesRespondedToClientsByClientIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes responded back to clients by Client IP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(scBytes) by cIP\r\n// Oql: Type=W3CIISLog | Measure Sum(scBytes) by cIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|TotalBytesRespondedToClientsByEachIISServerIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes responded back to clients by each IIS ServerIP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(scBytes) by sIP\r\n// Oql: Type=W3CIISLog | Measure Sum(scBytes) by sIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|TotalBytesSentByClientIPAddress')]", + "properties": { + "category": "Log Management", + "displayName": "Total Bytes sent by Client IP Address", + "query": "search * | extend Type = $table | where Type == W3CIISLog | summarize AggregatedValue = sum(csBytes) by cIP\r\n// Oql: Type=W3CIISLog | Measure Sum(csBytes) by cIP // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PEF: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|WarningEvents')]", + "properties": { + "category": "Log Management", + "displayName": "All Events with level \"Warning\"", + "query": "Event | where EventLevelName == \"warning\" | sort by TimeGenerated desc\r\n// Oql: Type=Event EventLevelName=warning // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|WindowsFireawallPolicySettingsChanged')]", + "properties": { + "category": "Log Management", + "displayName": "Windows Firewall Policy settings have changed", + "query": "Event | where EventLog == \"Microsoft-Windows-Windows Firewall With Advanced Security/Firewall\" and EventID == 2008 | sort by TimeGenerated desc\r\n// Oql: Type=Event EventLog=\"Microsoft-Windows-Windows Firewall With Advanced Security/Firewall\" EventID=2008 // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2020-08-01", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogManagement(', parameters('workspaces_log_odms_agw_stg_name'), ')_LogManagement|WindowsFireawallPolicySettingsChangedByMachines')]", + "properties": { + "category": "Log Management", + "displayName": "On which machines and how many times have Windows Firewall Policy settings changed", + "query": "Event | where EventLog == \"Microsoft-Windows-Windows Firewall With Advanced Security/Firewall\" and EventID == 2008 | summarize AggregatedValue = count() by Computer | limit 500000\r\n// Oql: Type=Event EventLog=\"Microsoft-Windows-Windows Firewall With Advanced Security/Firewall\" EventID=2008 | measure count() by Computer | top 500000 // Args: {OQ: True; WorkspaceId: 00000000-0000-0000-0000-000000000000} // Settings: {PTT: True; SortI: True; SortF: True} // Version: 0.1.122", + "version": 2 + }, + "type": "Microsoft.OperationalInsights/workspaces/savedSearches" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AACAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AACAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AACHttpRequest')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AACHttpRequest" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADB2CRequestLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADB2CRequestLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesAccountLogon')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesAccountLogon" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesAccountManagement')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesAccountManagement" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesDirectoryServiceAccess')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesDirectoryServiceAccess" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesDNSAuditsDynamicUpdates')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesDNSAuditsDynamicUpdates" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesDNSAuditsGeneral')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesDNSAuditsGeneral" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesLogonLogoff')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesLogonLogoff" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesPolicyChange')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesPolicyChange" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesPrivilegeUse')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesPrivilegeUse" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADDomainServicesSystemSecurity')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADDomainServicesSystemSecurity" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADManagedIdentitySignInLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADManagedIdentitySignInLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADNonInteractiveUserSignInLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADNonInteractiveUserSignInLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADProvisioningLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADProvisioningLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADRiskyServicePrincipals')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADRiskyServicePrincipals" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADRiskyUsers')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADRiskyUsers" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADServicePrincipalRiskEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADServicePrincipalRiskEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADServicePrincipalSignInLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADServicePrincipalSignInLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AADUserRiskEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AADUserRiskEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ABSBotRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ABSBotRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ABSChannelToBotRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ABSChannelToBotRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ABSDependenciesRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ABSDependenciesRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACICollaborationAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACICollaborationAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACRConnectedClientList')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACRConnectedClientList" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSAuthIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSAuthIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSBillingUsage')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSBillingUsage" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSCallAutomationIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallAutomationIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSCallAutomationMediaSummary')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallAutomationMediaSummary" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSCallDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSCallRecordingIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallRecordingIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSCallRecordingSummary')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallRecordingSummary" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSCallSummary')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallSummary" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSCallSurvey')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSCallSurvey" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSChatIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSChatIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSEmailSendMailOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSEmailSendMailOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSEmailStatusUpdateOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSEmailStatusUpdateOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSEmailUserEngagementOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSEmailUserEngagementOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSNetworkTraversalDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSNetworkTraversalDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSNetworkTraversalIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSNetworkTraversalIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSRoomsIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSRoomsIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ACSSMSIncomingOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ACSSMSIncomingOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AddonAzureBackupAlerts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupAlerts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AddonAzureBackupJobs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupJobs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AddonAzureBackupPolicy')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupPolicy" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AddonAzureBackupProtectedInstance')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupProtectedInstance" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AddonAzureBackupStorage')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AddonAzureBackupStorage" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFActivityRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFActivityRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFAirflowSchedulerLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFAirflowSchedulerLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFAirflowTaskLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFAirflowTaskLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFAirflowWebLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFAirflowWebLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFAirflowWorkerLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFAirflowWorkerLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFPipelineRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFPipelineRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSandboxActivityRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSandboxActivityRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSandboxPipelineRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSandboxPipelineRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSSignInLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSignInLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSSISIntegrationRuntimeLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISIntegrationRuntimeLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSSISPackageEventMessageContext')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageEventMessageContext" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSSISPackageEventMessages')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageEventMessages" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSSISPackageExecutableStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageExecutableStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSSISPackageExecutionComponentPhases')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageExecutionComponentPhases" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFSSISPackageExecutionDataStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFSSISPackageExecutionDataStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADFTriggerRun')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADFTriggerRun" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADPAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADPAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADPDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADPDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADPRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADPRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADSecurityAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADSecurityAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADTDataHistoryOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTDataHistoryOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADTDigitalTwinsOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTDigitalTwinsOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADTEventRoutesOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTEventRoutesOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADTModelsOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTModelsOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADTQueryOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADTQueryOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADXCommand')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXCommand" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADXIngestionBatching')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXIngestionBatching" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADXJournal')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXJournal" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADXQuery')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXQuery" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADXTableDetails')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXTableDetails" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ADXTableUsageStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ADXTableUsageStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AegDataPlaneRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AegDataPlaneRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AegDeliveryFailureLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AegDeliveryFailureLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AegPublishFailureLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AegPublishFailureLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AEWAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AEWAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AEWComputePipelinesLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AEWComputePipelinesLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AFSAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AFSAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodApplicationAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodApplicationAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodFarmManagementLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodFarmManagementLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodFarmOperationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodFarmOperationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodInsightLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodInsightLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodJobProcessedLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodJobProcessedLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodModelInferenceLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodModelInferenceLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodProviderAuthLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodProviderAuthLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodSatelliteLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodSatelliteLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodSensorManagementLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodSensorManagementLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AgriFoodWeatherLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AgriFoodWeatherLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AGSGrafanaLoginEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AGSGrafanaLoginEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AHDSDicomAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AHDSDicomAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AHDSDicomDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AHDSDicomDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AHDSMedTechDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AHDSMedTechDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AirflowDagProcessingLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AirflowDagProcessingLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AKSAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AKSAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AKSAuditAdmin')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AKSAuditAdmin" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AKSControlPlane')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AKSControlPlane" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/Alert')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Alert" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlComputeClusterEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlComputeClusterEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlComputeCpuGpuUtilization')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlComputeCpuGpuUtilization" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlComputeInstanceEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlComputeInstanceEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlComputeJobEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlComputeJobEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlDataLabelEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlDataLabelEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlDataSetEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlDataSetEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlDataStoreEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlDataStoreEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlDeploymentEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlDeploymentEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlEnvironmentEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlEnvironmentEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlInferencingEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlInferencingEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlModelsEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlModelsEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlOnlineEndpointConsoleLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlOnlineEndpointConsoleLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlOnlineEndpointEventLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlOnlineEndpointEventLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlOnlineEndpointTrafficLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlOnlineEndpointTrafficLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlPipelineEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlPipelineEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlRegistryReadEventsLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlRegistryReadEventsLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlRegistryWriteEventsLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlRegistryWriteEventsLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlRunEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlRunEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AmlRunStatusChangedEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AmlRunStatusChangedEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AMSKeyDeliveryRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AMSKeyDeliveryRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AMSLiveEventOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AMSLiveEventOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AMSMediaAccountHealth')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AMSMediaAccountHealth" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AMSStreamingEndpointRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AMSStreamingEndpointRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ANFFileAccess')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ANFFileAccess" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ApiManagementGatewayLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ApiManagementGatewayLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ApiManagementWebSocketConnectionLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ApiManagementWebSocketConnectionLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppAvailabilityResults')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppAvailabilityResults" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppBrowserTimings')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppBrowserTimings" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppCenterError')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppCenterError" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppDependencies')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppDependencies" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppEnvSpringAppConsoleLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppEnvSpringAppConsoleLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppEvents" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppExceptions')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppExceptions" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppMetrics" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppPageViews')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppPageViews" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppPerformanceCounters')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppPerformanceCounters" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppPlatformBuildLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformBuildLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppPlatformContainerEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformContainerEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppPlatformIngressLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformIngressLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppPlatformLogsforSpring')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformLogsforSpring" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppPlatformSystemLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppPlatformSystemLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppRequests" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceAntivirusScanAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceAntivirusScanAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceAppLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceAppLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceConsoleLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceConsoleLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceEnvironmentPlatformLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceEnvironmentPlatformLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceFileAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceFileAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceHTTPLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceHTTPLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceIPSecAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceIPSecAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServicePlatformLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServicePlatformLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppServiceServerlessSecurityPluginData')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AppServiceServerlessSecurityPluginData" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppSystemEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppSystemEvents" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AppTraces')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AppTraces" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ASCAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASCAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ASCDeviceEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASCDeviceEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ASimAuditEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASimAuditEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ASimAuthenticationEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASimAuthenticationEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ASimProcessEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASimProcessEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ASRJobs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASRJobs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ASRReplicatedItems')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ASRReplicatedItems" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ATCExpressRouteCircuitIpfix')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ATCExpressRouteCircuitIpfix" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AUIEventsAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AUIEventsAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AUIEventsOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AUIEventsOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AutoscaleEvaluationsLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AutoscaleEvaluationsLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AutoscaleScaleActionsLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AutoscaleScaleActionsLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AVNMNetworkGroupMembershipChange')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AVNMNetworkGroupMembershipChange" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AVNMRuleCollectionChange')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AVNMRuleCollectionChange" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AVSSyslog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AVSSyslog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWApplicationRule')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWApplicationRule" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWApplicationRuleAggregation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWApplicationRuleAggregation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWDnsQuery')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWDnsQuery" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWFatFlow')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWFatFlow" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWFlowTrace')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWFlowTrace" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWIdpsSignature')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWIdpsSignature" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWInternalFqdnResolutionFailure')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWInternalFqdnResolutionFailure" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWNatRule')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWNatRule" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWNatRuleAggregation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWNatRuleAggregation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWNetworkRule')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWNetworkRule" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWNetworkRuleAggregation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWNetworkRuleAggregation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZFWThreatIntel')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZFWThreatIntel" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZKVAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZKVAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZKVPolicyEvaluationDetailsLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZKVPolicyEvaluationDetailsLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSApplicationMetricLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSApplicationMetricLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSArchiveLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSArchiveLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSAutoscaleLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSAutoscaleLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSCustomerManagedKeyUserLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSCustomerManagedKeyUserLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSHybridConnectionsEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSHybridConnectionsEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSKafkaCoordinatorLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSKafkaCoordinatorLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSKafkaUserErrorLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSKafkaUserErrorLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSOperationalLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSOperationalLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSRunTimeAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSRunTimeAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AZMSVnetConnectionEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AZMSVnetConnectionEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureActivity')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "AzureActivity" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureActivityV2')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureActivityV2" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureAttestationDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureAttestationDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureCloudHsmAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureCloudHsmAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureDevOpsAuditing')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureDevOpsAuditing" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureDiagnostics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "columns": [ + { + "name": "WAFPolicyID_s", + "type": "string" + }, + { + "name": "listenerName_s", + "type": "string" + }, + { + "name": "ruleName_s", + "type": "string" + }, + { + "name": "backendPoolName_s", + "type": "string" + }, + { + "name": "backendSettingName_s", + "type": "string" + }, + { + "name": "clientIP_s", + "type": "string" + }, + { + "name": "clientPort_d", + "type": "real" + }, + { + "name": "httpMethod_s", + "type": "string" + }, + { + "name": "originalRequestUriWithArgs_s", + "type": "string" + }, + { + "name": "requestQuery_s", + "type": "string" + }, + { + "name": "userAgent_s", + "type": "string" + }, + { + "name": "httpStatus_d", + "type": "real" + }, + { + "name": "httpVersion_s", + "type": "string" + }, + { + "name": "receivedBytes_d", + "type": "real" + }, + { + "name": "sentBytes_d", + "type": "real" + }, + { + "name": "clientResponseTime_d", + "type": "real" + }, + { + "name": "timeTaken_d", + "type": "real" + }, + { + "name": "WAFEvaluationTime_s", + "type": "string" + }, + { + "name": "WAFMode_s", + "type": "string" + }, + { + "name": "sslEnabled_s", + "type": "string" + }, + { + "name": "sslCipher_s", + "type": "string" + }, + { + "name": "sslProtocol_s", + "type": "string" + }, + { + "name": "sslClientVerify_s", + "type": "string" + }, + { + "name": "sslClientCertificateFingerprint_s", + "type": "string" + }, + { + "name": "sslClientCertificateIssuerName_s", + "type": "string" + }, + { + "name": "serverRouted_s", + "type": "string" + }, + { + "name": "serverStatus_s", + "type": "string" + }, + { + "name": "serverResponseLatency_s", + "type": "string" + }, + { + "name": "upstreamSourcePort_s", + "type": "string" + }, + { + "name": "originalHost_s", + "type": "string" + }, + { + "name": "host_s", + "type": "string" + }, + { + "name": "timeStamp_t", + "type": "datetime" + }, + { + "name": "ResourceId", + "type": "string" + }, + { + "name": "OperationName", + "type": "string" + }, + { + "name": "Category", + "type": "string" + }, + { + "name": "instanceId_s", + "type": "string" + }, + { + "name": "clientIp_s", + "type": "string" + }, + { + "name": "requestUri_s", + "type": "string" + }, + { + "name": "ruleSetType_s", + "type": "string" + }, + { + "name": "ruleSetVersion_s", + "type": "string" + }, + { + "name": "ruleId_s", + "type": "string" + }, + { + "name": "ruleGroup_s", + "type": "string" + }, + { + "name": "Message", + "type": "string" + }, + { + "name": "action_s", + "type": "string" + }, + { + "name": "details_message_s", + "type": "string" + }, + { + "name": "details_data_s", + "type": "string" + }, + { + "name": "details_file_s", + "type": "string" + }, + { + "name": "details_line_s", + "type": "string" + }, + { + "name": "hostname_s", + "type": "string" + }, + { + "name": "transactionId_g", + "type": "guid" + }, + { + "name": "policyId_s", + "type": "string" + }, + { + "name": "policyScope_s", + "type": "string" + }, + { + "name": "policyScopeName_s", + "type": "string" + }, + { + "name": "engine_s", + "type": "string" + }, + { + "name": "SubscriptionId", + "type": "guid" + }, + { + "name": "ResourceGroup", + "type": "string" + }, + { + "name": "ResourceProvider", + "type": "string" + }, + { + "name": "Resource", + "type": "string" + }, + { + "name": "ResourceType", + "type": "string" + }, + { + "name": "_CustomFieldsCollection", + "type": "dynamic" + } + ], + "name": "AzureDiagnostics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureLoadTestingOperation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureLoadTestingOperation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/AzureMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "AzureMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/BaiClusterEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BaiClusterEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/BaiClusterNodeEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BaiClusterNodeEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/BaiJobEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BaiJobEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/BlockchainApplicationLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BlockchainApplicationLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/BlockchainProxyLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "BlockchainProxyLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CassandraAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CassandraAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CassandraLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CassandraLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CCFApplicationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CCFApplicationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CDBCassandraRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBCassandraRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CDBControlPlaneRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBControlPlaneRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CDBDataPlaneRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBDataPlaneRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CDBGremlinRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBGremlinRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CDBMongoRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBMongoRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CDBPartitionKeyRUConsumption')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBPartitionKeyRUConsumption" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CDBPartitionKeyStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBPartitionKeyStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CDBQueryRuntimeStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CDBQueryRuntimeStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ChaosStudioExperimentEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ChaosStudioExperimentEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CHSMManagementAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CHSMManagementAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CIEventsAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CIEventsAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CIEventsOperational')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CIEventsOperational" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ComputerGroup')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ComputerGroup" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerAppConsoleLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerAppConsoleLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerAppSystemLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerAppSystemLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerImageInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerImageInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerInstanceLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerInstanceLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerLogV2')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerLogV2" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerNodeInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerNodeInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerRegistryLoginEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerRegistryLoginEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerRegistryRepositoryEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerRegistryRepositoryEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ContainerServiceLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ContainerServiceLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/CoreAzureBackup')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "CoreAzureBackup" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksAccounts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksAccounts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksCapsule8Dataplane')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksCapsule8Dataplane" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksClamAVScan')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksClamAVScan" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksClusterLibraries')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksClusterLibraries" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksClusters')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksClusters" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksDatabricksSQL')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksDatabricksSQL" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksDBFS')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksDBFS" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksDeltaPipelines')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksDeltaPipelines" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksFeatureStore')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksFeatureStore" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksGenie')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksGenie" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksGitCredentials')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksGitCredentials" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksGlobalInitScripts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksGlobalInitScripts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksIAMRole')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksIAMRole" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksInstancePools')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksInstancePools" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksJobs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksJobs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksMLflowAcledArtifact')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksMLflowAcledArtifact" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksMLflowExperiment')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksMLflowExperiment" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksModelRegistry')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksModelRegistry" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksNotebook')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksNotebook" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksPartnerHub')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksPartnerHub" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksRemoteHistoryService')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksRemoteHistoryService" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksRepos')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksRepos" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksSecrets')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksSecrets" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksServerlessRealTimeInference')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksServerlessRealTimeInference" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksSQL')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksSQL" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksSQLPermissions')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksSQLPermissions" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksSSH')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksSSH" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksTables')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksTables" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksUnityCatalog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksUnityCatalog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksWebTerminal')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksWebTerminal" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DatabricksWorkspace')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DatabricksWorkspace" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DataTransferOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DataTransferOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DevCenterDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DevCenterDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DSMAzureBlobStorageLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DSMAzureBlobStorageLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DSMDataClassificationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DSMDataClassificationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/DSMDataLabelingLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "DSMDataLabelingLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/EnrichedMicrosoft365AuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "EnrichedMicrosoft365AuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ETWEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ETWEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/Event')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Event" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ExchangeAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ExchangeAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ExchangeOnlineAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ExchangeOnlineAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/FailedIngestion')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "FailedIngestion" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/FunctionAppLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "FunctionAppLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightAmbariClusterAlerts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightAmbariClusterAlerts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightAmbariSystemMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightAmbariSystemMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightGatewayAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightGatewayAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightHadoopAndYarnLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHadoopAndYarnLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightHadoopAndYarnMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHadoopAndYarnMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightHBaseLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHBaseLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightHBaseMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHBaseMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightHiveAndLLAPLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHiveAndLLAPLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightHiveAndLLAPMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHiveAndLLAPMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightHiveQueryAppStats')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHiveQueryAppStats" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightHiveTezAppStats')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightHiveTezAppStats" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightJupyterNotebookEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightJupyterNotebookEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightKafkaLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightKafkaLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightKafkaMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightKafkaMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightKafkaServerLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightKafkaServerLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightOozieLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightOozieLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightRangerAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightRangerAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSecurityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSecurityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkApplicationEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkApplicationEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkBlockManagerEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkBlockManagerEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkEnvironmentEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkEnvironmentEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkExecutorEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkExecutorEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkExtraEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkExtraEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkJobEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkJobEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkSQLExecutionEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkSQLExecutionEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkStageEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkStageEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkStageTaskAccumulables')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkStageTaskAccumulables" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightSparkTaskEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightSparkTaskEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightStormLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightStormLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightStormMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightStormMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/HDInsightStormTopologyMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "HDInsightStormTopologyMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/Heartbeat')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Heartbeat" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/InsightsMetrics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "InsightsMetrics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/IntuneAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "IntuneAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/IntuneDeviceComplianceOrg')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "IntuneDeviceComplianceOrg" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/IntuneDevices')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "IntuneDevices" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/IntuneOperationalLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "IntuneOperationalLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/KubeEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/KubeHealth')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeHealth" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/KubeMonAgentEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeMonAgentEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/KubeNodeInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeNodeInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/KubePodInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubePodInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/KubePVInventory')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubePVInventory" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/KubeServices')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "KubeServices" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LAQueryLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "LAQueryLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/LogicAppWorkflowRuntime')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "LogicAppWorkflowRuntime" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MCCEventLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MCCEventLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MCVPAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MCVPAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MCVPOperationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MCVPOperationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MicrosoftAzureBastionAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftAzureBastionAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MicrosoftDataShareReceivedSnapshotLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftDataShareReceivedSnapshotLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MicrosoftDataShareSentSnapshotLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftDataShareSentSnapshotLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MicrosoftDynamicsTelemetryPerformanceLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftDynamicsTelemetryPerformanceLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MicrosoftDynamicsTelemetrySystemMetricsLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftDynamicsTelemetrySystemMetricsLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MicrosoftGraphActivityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftGraphActivityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/MicrosoftHealthcareApisAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "MicrosoftHealthcareApisAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NCBMSecurityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCBMSecurityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NCBMSystemLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCBMSystemLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NCCKubernetesLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCCKubernetesLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NCCVMOrchestrationLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCCVMOrchestrationLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NCSStorageAlerts')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCSStorageAlerts" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NCSStorageLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NCSStorageLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NetworkAccessTraffic')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NetworkAccessTraffic" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NSPAccessLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NSPAccessLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NTAIpDetails')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NTAIpDetails" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NTANetAnalytics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NTANetAnalytics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NTATopologyDetails')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NTATopologyDetails" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NWConnectionMonitorDestinationListenerResult')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NWConnectionMonitorDestinationListenerResult" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NWConnectionMonitorDNSResult')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NWConnectionMonitorDNSResult" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NWConnectionMonitorPathResult')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NWConnectionMonitorPathResult" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/NWConnectionMonitorTestResult')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "NWConnectionMonitorTestResult" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/OEPAirFlowTask')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPAirFlowTask" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/OEPAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/OEPDataplaneLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPDataplaneLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/OEPElasticOperator')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPElasticOperator" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/OEPElasticsearch')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OEPElasticsearch" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/OLPSupplyChainEntityOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OLPSupplyChainEntityOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/OLPSupplyChainEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "OLPSupplyChainEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/Operation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Operation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/Perf')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Perf" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PFTitleAuditLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PFTitleAuditLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PowerBIAuditTenant')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIAuditTenant" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PowerBIDatasetsTenant')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIDatasetsTenant" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PowerBIDatasetsTenantPreview')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIDatasetsTenantPreview" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PowerBIDatasetsWorkspace')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIDatasetsWorkspace" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PowerBIDatasetsWorkspacePreview')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIDatasetsWorkspacePreview" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PowerBIReportUsageTenant')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIReportUsageTenant" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PowerBIReportUsageWorkspace')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PowerBIReportUsageWorkspace" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PurviewDataSensitivityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PurviewDataSensitivityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PurviewScanStatusLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PurviewScanStatusLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/PurviewSecurityLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "PurviewSecurityLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/REDConnectionEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "REDConnectionEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ResourceManagementPublicAccessLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ResourceManagementPublicAccessLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SCCMAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SCCMAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SCOMAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SCOMAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ServiceFabricOperationalEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ServiceFabricOperationalEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ServiceFabricReliableActorEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ServiceFabricReliableActorEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/ServiceFabricReliableServiceEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "ServiceFabricReliableServiceEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SfBAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SfBAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SfBOnlineAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SfBOnlineAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SharePointOnlineAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SharePointOnlineAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SignalRServiceDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SignalRServiceDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SigninLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SigninLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SPAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SPAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SQLAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SQLAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SQLSecurityAuditEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SQLSecurityAuditEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageAntimalwareScanResults')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageAntimalwareScanResults" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageBlobLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageBlobLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageCacheOperationEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageCacheOperationEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageCacheUpgradeEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageCacheUpgradeEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageCacheWarningEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageCacheWarningEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageFileLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageFileLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageMalwareScanningResults')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageMalwareScanningResults" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageMoverCopyLogsFailed')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageMoverCopyLogsFailed" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageMoverCopyLogsTransferred')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageMoverCopyLogsTransferred" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageMoverJobRunLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageMoverJobRunLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageQueueLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageQueueLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/StorageTableLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "StorageTableLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SucceededIngestion')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SucceededIngestion" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseBigDataPoolApplicationsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseBigDataPoolApplicationsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseBuiltinSqlPoolRequestsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseBuiltinSqlPoolRequestsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseDXCommand')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXCommand" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseDXFailedIngestion')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXFailedIngestion" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseDXIngestionBatching')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXIngestionBatching" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseDXQuery')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXQuery" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseDXSucceededIngestion')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXSucceededIngestion" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseDXTableDetails')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXTableDetails" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseDXTableUsageStatistics')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseDXTableUsageStatistics" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseGatewayApiRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseGatewayApiRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseGatewayEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseGatewayEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseIntegrationActivityRuns')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationActivityRuns" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseIntegrationActivityRunsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationActivityRunsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseIntegrationPipelineRuns')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationPipelineRuns" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseIntegrationPipelineRunsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationPipelineRunsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseIntegrationTriggerRuns')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationTriggerRuns" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseIntegrationTriggerRunsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseIntegrationTriggerRunsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseLinkEvent')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseLinkEvent" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseRBACEvents')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseRBACEvents" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseRbacOperations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseRbacOperations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseScopePoolScopeJobsEnded')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseScopePoolScopeJobsEnded" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseScopePoolScopeJobsStateChange')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseScopePoolScopeJobsStateChange" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseSqlPoolDmsWorkers')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolDmsWorkers" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseSqlPoolExecRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolExecRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseSqlPoolRequestSteps')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolRequestSteps" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseSqlPoolSqlRequests')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolSqlRequests" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/SynapseSqlPoolWaits')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "SynapseSqlPoolWaits" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/Syslog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "Syslog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/TSIIngress')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "TSIIngress" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/UCClient')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCClient" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/UCClientReadinessStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCClientReadinessStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/UCClientUpdateStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCClientUpdateStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/UCDeviceAlert')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCDeviceAlert" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/UCDOAggregatedStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCDOAggregatedStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/UCDOStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCDOStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/UCServiceUpdateStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCServiceUpdateStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/UCUpdateAlert')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "UCUpdateAlert" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/Usage')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 90, + "schema": { + "name": "Usage" + }, + "totalRetentionInDays": 90 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/VIAudit')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VIAudit" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/VIIndexing')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VIIndexing" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/VMBoundPort')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VMBoundPort" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/VMComputer')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VMComputer" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/VMConnection')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VMConnection" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/VMProcess')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "VMProcess" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/W3CIISLog')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "W3CIISLog" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WebPubSubConnectivity')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WebPubSubConnectivity" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WebPubSubHttpRequest')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WebPubSubHttpRequest" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WebPubSubMessaging')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WebPubSubMessaging" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WindowsClientAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WindowsClientAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WindowsServerAssessmentRecommendation')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WindowsServerAssessmentRecommendation" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WorkloadDiagnosticLogs')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WorkloadDiagnosticLogs" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDAgentHealthStatus')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDAgentHealthStatus" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDAutoscaleEvaluationPooled')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDAutoscaleEvaluationPooled" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDCheckpoints')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDCheckpoints" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDConnectionGraphicsDataPreview')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDConnectionGraphicsDataPreview" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDConnectionNetworkData')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDConnectionNetworkData" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDConnections')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDConnections" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDErrors')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDErrors" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDFeeds')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDFeeds" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDHostRegistrations')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDHostRegistrations" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDManagement')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDManagement" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2021-12-01-preview", + "dependsOn": [ + "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaces_log_odms_agw_stg_name'))]" + ], + "name": "[concat(parameters('workspaces_log_odms_agw_stg_name'), '/WVDSessionHostManagement')]", + "properties": { + "plan": "Analytics", + "retentionInDays": 30, + "schema": { + "name": "WVDSessionHostManagement" + }, + "totalRetentionInDays": 30 + }, + "type": "Microsoft.OperationalInsights/workspaces/tables" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name'), '/2e13a9583bb1a')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_mysql_odms_db_stg_private_mysql_database_azure_com_name'), '/ktfear7hhrgko')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_azurewebsites_net_name'), '/ktfear7hhrgko')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_redis_cache_windows_net_name'), '/ktfear7hhrgko')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2018-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_2azurewebsites_net_name'))]", + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + ], + "location": "global", + "name": "[concat(parameters('privateDnsZones_privatelink_2azurewebsites_net_name'), '/staging')]", + "properties": { + "registrationEnabled": false, + "virtualNetwork": { + "id": "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]" + } + }, + "type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_app_stg_name'))]", + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_pep_odms_app_stg_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-azurewebsites-net", + "properties": { + "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_azurewebsites_net_name'))]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/privateEndpoints', parameters('privateEndpoints_pep_odms_staapp_stg_name'))]", + "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name'))]" + ], + "name": "[concat(parameters('privateEndpoints_pep_odms_staapp_stg_name'), '/default')]", + "properties": { + "privateDnsZoneConfigs": [ + { + "name": "privatelink-3-azurestaticapps-net", + "properties": { + "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', parameters('privateDnsZones_privatelink_3_azurestaticapps_net_name'))]" + } + } + ] + }, + "type": "Microsoft.Network/privateEndpoints/privateDnsZoneGroups" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_stg_name'), '/snet-odms-integration-stg')]", + "properties": { + "addressPrefix": "10.2.4.0/24", + "delegations": [ + { + "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-integration-stg'), '/delegations/delegation')]", + "name": "delegation", + "properties": { + "serviceName": "Microsoft.Web/serverfarms" + }, + "type": "Microsoft.Network/virtualNetworks/subnets/delegations" + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_stg_name'), '/snet-odms-private-stg')]", + "properties": { + "addressPrefix": "10.2.2.0/24", + "delegations": [ + { + "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-private-stg'), '/delegations/dlg-Microsoft.DBforMySQL-flexibleServers')]", + "name": "dlg-Microsoft.DBforMySQL-flexibleServers", + "properties": { + "serviceName": "Microsoft.DBforMySQL/flexibleServers" + }, + "type": "Microsoft.Network/virtualNetworks/subnets/delegations" + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_stg_name'), '/snet-odms-public-stg')]", + "properties": { + "addressPrefix": "10.2.1.0/24", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-gateway-stg')]", + "[resourceId('Microsoft.Network/publicIPAddresses', parameters('publicIPAddresses_pip_odms_app_stg_name'))]", + "[resourceId('Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies', parameters('ApplicationGatewayWebApplicationFirewallPolicies_waf_odms_agw_stg_name'))]" + ], + "location": "japaneast", + "name": "[parameters('applicationGateways_agw_odms_webapp_stg_name')]", + "properties": { + "autoscaleConfiguration": { + "maxCapacity": 10, + "minCapacity": 0 + }, + "backendAddressPools": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendAddressPools/pool-odms-app-stg')]", + "name": "pool-odms-app-stg", + "properties": { + "backendAddresses": [ + { + "fqdn": "app-odms-dictation-stg.azurewebsites.net" + } + ] + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendAddressPools/pool-odms-staapp-stg')]", + "name": "pool-odms-staapp-stg", + "properties": { + "backendAddresses": [ + { + "fqdn": "purple-forest-07b9d5300.3.azurestaticapps.net" + } + ] + } + } + ], + "backendHttpSettingsCollection": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendHttpSettingsCollection/setting-odms-https-stg')]", + "name": "setting-odms-https-stg", + "properties": { + "cookieBasedAffinity": "Disabled", + "path": "/", + "pickHostNameFromBackendAddress": true, + "port": 443, + "probe": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/probes/setting-odms-https-stg')]" + }, + "protocol": "Https", + "requestTimeout": 90 + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendHttpSettingsCollection/setting-odms-back-stg')]", + "name": "setting-odms-back-stg", + "properties": { + "cookieBasedAffinity": "Disabled", + "path": "/", + "pickHostNameFromBackendAddress": true, + "port": 443, + "protocol": "Https", + "requestTimeout": 90 + } + } + ], + "backendSettingsCollection": [], + "enableHttp2": false, + "firewallPolicy": { + "id": "[resourceId('Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies', parameters('ApplicationGatewayWebApplicationFirewallPolicies_waf_odms_agw_stg_name'))]" + }, + "frontendIPConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/frontendIPConfigurations/appGwPublicFrontendIpIPv4')]", + "name": "appGwPublicFrontendIpIPv4", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "publicIPAddress": { + "id": "[resourceId('Microsoft.Network/publicIPAddresses', parameters('publicIPAddresses_pip_odms_app_stg_name'))]" + } + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/frontendIPConfigurations/appGwPrivateFrontendIpIPv4')]", + "name": "appGwPrivateFrontendIpIPv4", + "properties": { + "privateIPAddress": "10.2.0.10", + "privateIPAllocationMethod": "Static", + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-gateway-stg')]" + } + } + } + ], + "frontendPorts": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/frontendPorts/port_4443')]", + "name": "port_4443", + "properties": { + "port": 4443 + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/frontendPorts/port_443')]", + "name": "port_443", + "properties": { + "port": 443 + } + } + ], + "gatewayIPConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/gatewayIPConfigurations/appGatewayIpConfig')]", + "name": "appGatewayIpConfig", + "properties": { + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-gateway-stg')]" + } + } + } + ], + "httpListeners": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/httpListeners/listener-odms-private-dev')]", + "name": "listener-odms-private-dev", + "properties": { + "frontendIPConfiguration": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/frontendIPConfigurations/appGwPrivateFrontendIpIPv4')]" + }, + "frontendPort": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/frontendPorts/port_4443')]" + }, + "hostNames": [], + "protocol": "Https", + "requireServerNameIndication": false, + "sslCertificate": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/sslCertificates/ca-odms-agw-stg')]" + } + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/httpListeners/listener-odms-public-stg')]", + "name": "listener-odms-public-stg", + "properties": { + "customErrorConfigurations": [], + "frontendIPConfiguration": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/frontendIPConfigurations/appGwPublicFrontendIpIPv4')]" + }, + "frontendPort": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/frontendPorts/port_443')]" + }, + "hostNames": [], + "protocol": "Https", + "requireServerNameIndication": false, + "sslCertificate": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/sslCertificates/ca-odms-agw-stg-ip')]" + } + } + } + ], + "listeners": [], + "loadDistributionPolicies": [], + "privateLinkConfigurations": [], + "probes": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/probes/setting-odms-https-stg')]", + "name": "setting-odms-https-stg", + "properties": { + "interval": 30, + "match": {}, + "minServers": 0, + "path": "/health", + "pickHostNameFromBackendHttpSettings": true, + "protocol": "Https", + "timeout": 30, + "unhealthyThreshold": 3 + } + } + ], + "redirectConfigurations": [], + "requestRoutingRules": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/requestRoutingRules/rule-odms-private-stg')]", + "name": "rule-odms-private-stg", + "properties": { + "httpListener": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/httpListeners/listener-odms-private-dev')]" + }, + "priority": 1, + "ruleType": "PathBasedRouting", + "urlPathMap": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/urlPathMaps/rule-odms-private-stg')]" + } + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/requestRoutingRules/rule-odms-public-stg')]", + "name": "rule-odms-public-stg", + "properties": { + "httpListener": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/httpListeners/listener-odms-public-stg')]" + }, + "priority": 2, + "ruleType": "PathBasedRouting", + "urlPathMap": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/urlPathMaps/rule-odms-public-stg')]" + } + } + } + ], + "rewriteRuleSets": [], + "routingRules": [], + "sku": { + "name": "WAF_v2", + "tier": "WAF_v2" + }, + "sslCertificates": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/sslCertificates/ca-odms-agw-stg')]", + "name": "ca-odms-agw-stg", + "properties": {} + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/sslCertificates/ca-odms-agw-stg-ip')]", + "name": "ca-odms-agw-stg-ip", + "properties": {} + } + ], + "sslProfiles": [], + "trustedClientCertificates": [], + "trustedRootCertificates": [], + "urlPathMaps": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/urlPathMaps/rule-odms-private-stg')]", + "name": "rule-odms-private-stg", + "properties": { + "defaultBackendAddressPool": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendAddressPools/pool-odms-staapp-stg')]" + }, + "defaultBackendHttpSettings": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendHttpSettingsCollection/setting-odms-https-stg')]" + }, + "pathRules": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/urlPathMaps/rule-odms-private-stg/pathRules/target-odms-app-stg')]", + "name": "target-odms-app-stg", + "properties": { + "backendAddressPool": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendAddressPools/pool-odms-app-stg')]" + }, + "backendHttpSettings": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendHttpSettingsCollection/setting-odms-https-stg')]" + }, + "paths": [ + "/dictation/api/*" + ] + } + } + ] + } + }, + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/urlPathMaps/rule-odms-public-stg')]", + "name": "rule-odms-public-stg", + "properties": { + "defaultBackendAddressPool": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendAddressPools/pool-odms-staapp-stg')]" + }, + "defaultBackendHttpSettings": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendHttpSettingsCollection/setting-odms-https-stg')]" + }, + "pathRules": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/urlPathMaps/rule-odms-public-stg/pathRules/target-odms-app-stg')]", + "name": "target-odms-app-stg", + "properties": { + "backendAddressPool": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendAddressPools/pool-odms-app-stg')]" + }, + "backendHttpSettings": { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/backendHttpSettingsCollection/setting-odms-https-stg')]" + }, + "paths": [ + "/dictation/api/*" + ] + } + } + ] + } + } + ] + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Network/applicationGateways" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_vnet_odms_network_stg_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]", + "[resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name'))]" + ], + "name": "[concat(parameters('virtualNetworks_vnet_odms_network_stg_name'), '/snet-odms-gateway-stg')]", + "properties": { + "addressPrefix": "10.2.0.0/24", + "applicationGatewayIPConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/gatewayIPConfigurations/appGatewayIpConfig')]" + } + ], + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + }, + { + "locations": [ + "*" + ], + "service": "Microsoft.Web" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "apiVersion": "2022-11-01", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]", + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]", + "[resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name'))]" + ], + "location": "japaneast", + "name": "[parameters('virtualNetworks_vnet_odms_network_stg_name')]", + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.2.0.0/16" + ] + }, + "enableDdosProtection": false, + "subnets": [ + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-endpoint-stg')]", + "name": "snet-odms-endpoint-stg", + "properties": { + "addressPrefix": "10.2.3.0/24", + "delegations": [], + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-public-stg')]", + "name": "snet-odms-public-stg", + "properties": { + "addressPrefix": "10.2.1.0/24", + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-private-stg')]", + "name": "snet-odms-private-stg", + "properties": { + "addressPrefix": "10.2.2.0/24", + "delegations": [ + { + "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-private-stg'), '/delegations/dlg-Microsoft.DBforMySQL-flexibleServers')]", + "name": "dlg-Microsoft.DBforMySQL-flexibleServers", + "properties": { + "serviceName": "Microsoft.DBforMySQL/flexibleServers" + }, + "type": "Microsoft.Network/virtualNetworks/subnets/delegations" + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_private_stg_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-integration-stg')]", + "name": "snet-odms-integration-stg", + "properties": { + "addressPrefix": "10.2.4.0/24", + "delegations": [ + { + "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-integration-stg'), '/delegations/delegation')]", + "name": "delegation", + "properties": { + "serviceName": "Microsoft.Web/serverfarms" + }, + "type": "Microsoft.Network/virtualNetworks/subnets/delegations" + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_public_stg_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + }, + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'snet-odms-gateway-stg')]", + "name": "snet-odms-gateway-stg", + "properties": { + "addressPrefix": "10.2.0.0/24", + "applicationGatewayIPConfigurations": [ + { + "id": "[concat(resourceId('Microsoft.Network/applicationGateways', parameters('applicationGateways_agw_odms_webapp_stg_name')), '/gatewayIPConfigurations/appGatewayIpConfig')]" + } + ], + "delegations": [], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_nsg_odms_gateway_stg_name'))]" + }, + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "locations": [ + "*" + ], + "service": "Microsoft.KeyVault" + }, + { + "locations": [ + "*" + ], + "service": "Microsoft.Web" + } + ] + }, + "type": "Microsoft.Network/virtualNetworks/subnets" + } + ], + "virtualNetworkPeerings": [ + { + "id": "[resourceId('Microsoft.Network/virtualNetworks/virtualNetworkPeerings', parameters('virtualNetworks_vnet_odms_network_stg_name'), 'peer-odms-maintenance-stg')]", + "name": "peer-odms-maintenance-stg", + "properties": { + "allowForwardedTraffic": true, + "allowGatewayTransit": false, + "allowVirtualNetworkAccess": true, + "doNotVerifyRemoteGateways": false, + "peeringState": "Connected", + "peeringSyncLevel": "FullyInSync", + "remoteAddressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "remoteVirtualNetwork": { + "id": "[parameters('virtualNetworks_vnet_odms_network_maintenance_externalid')]" + }, + "remoteVirtualNetworkAddressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "useRemoteGateways": false + }, + "type": "Microsoft.Network/virtualNetworks/virtualNetworkPeerings" + } + ] + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Network/virtualNetworks" + } + ], + "variables": {} +} diff --git a/configurations/azure/stg-notification-rg.json b/configurations/azure/stg-notification-rg.json new file mode 100644 index 0000000..cba5594 --- /dev/null +++ b/configurations/azure/stg-notification-rg.json @@ -0,0 +1,95 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "namespaces_ntfns_odms_stg_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2017-04-01", + "location": "Japan East", + "name": "[parameters('namespaces_ntfns_odms_stg_name')]", + "properties": { + "createdAt": "2023-07-25T01:57:35.5400000Z", + "critical": false, + "enabled": true, + "provisioningState": "Succeeded", + "serviceBusEndpoint": "[concat('https://', parameters('namespaces_ntfns_odms_stg_name'), '.servicebus.windows.net:443/')]", + "status": "Active", + "updatedAt": "2023-07-25T01:57:35.5970000Z" + }, + "sku": { + "name": "Free" + }, + "type": "Microsoft.NotificationHubs/namespaces" + }, + { + "apiVersion": "2017-04-01", + "dependsOn": [ + "[resourceId('Microsoft.NotificationHubs/namespaces', parameters('namespaces_ntfns_odms_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('namespaces_ntfns_odms_stg_name'), '/RootManageSharedAccessKey')]", + "properties": { + "rights": [ + "Manage", + "Listen", + "Send" + ] + }, + "type": "Microsoft.NotificationHubs/namespaces/AuthorizationRules" + }, + { + "apiVersion": "2017-04-01", + "dependsOn": [ + "[resourceId('Microsoft.NotificationHubs/namespaces', parameters('namespaces_ntfns_odms_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('namespaces_ntfns_odms_stg_name'), '/ntf-odms-stg')]", + "properties": { + "authorizationRules": [], + "registrationTtl": "10675199.02:48:05.4775807" + }, + "tags": { + "Project": "OMDS", + "environment": "staging" + }, + "type": "Microsoft.NotificationHubs/namespaces/NotificationHubs" + }, + { + "apiVersion": "2017-04-01", + "dependsOn": [ + "[resourceId('Microsoft.NotificationHubs/namespaces/NotificationHubs', parameters('namespaces_ntfns_odms_stg_name'), 'ntf-odms-stg')]", + "[resourceId('Microsoft.NotificationHubs/namespaces', parameters('namespaces_ntfns_odms_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('namespaces_ntfns_odms_stg_name'), '/ntf-odms-stg/DefaultFullSharedAccessSignature')]", + "properties": { + "rights": [ + "Manage", + "Listen", + "Send" + ] + }, + "type": "Microsoft.NotificationHubs/namespaces/NotificationHubs/AuthorizationRules" + }, + { + "apiVersion": "2017-04-01", + "dependsOn": [ + "[resourceId('Microsoft.NotificationHubs/namespaces/NotificationHubs', parameters('namespaces_ntfns_odms_stg_name'), 'ntf-odms-stg')]", + "[resourceId('Microsoft.NotificationHubs/namespaces', parameters('namespaces_ntfns_odms_stg_name'))]" + ], + "location": "Japan East", + "name": "[concat(parameters('namespaces_ntfns_odms_stg_name'), '/ntf-odms-stg/DefaultListenSharedAccessSignature')]", + "properties": { + "rights": [ + "Listen" + ] + }, + "type": "Microsoft.NotificationHubs/namespaces/NotificationHubs/AuthorizationRules" + } + ], + "variables": {} +} diff --git a/configurations/azure/stg-storage-rg.json b/configurations/azure/stg-storage-rg.json new file mode 100644 index 0000000..6d857bc --- /dev/null +++ b/configurations/azure/stg-storage-rg.json @@ -0,0 +1,651 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "storageAccounts_saodmsaustg_name": { + "type": "String" + }, + "storageAccounts_saodmseustg_name": { + "type": "String" + }, + "storageAccounts_saodmsusstg_name": { + "type": "String" + } + }, + "resources": [ + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "australiaeast", + "name": "[parameters('storageAccounts_saodmsaustg_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": false, + "allowCrossTenantReplication": true, + "allowSharedKeyAccess": true, + "defaultToOAuthAuthentication": false, + "dnsEndpointType": "Standard", + "encryption": { + "keySource": "Microsoft.Storage", + "requireInfrastructureEncryption": false, + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Allow", + "ipRules": [], + "virtualNetworkRules": [] + }, + "publicNetworkAccess": "Enabled", + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "northeurope", + "name": "[parameters('storageAccounts_saodmseustg_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": false, + "allowCrossTenantReplication": true, + "allowSharedKeyAccess": true, + "defaultToOAuthAuthentication": false, + "dnsEndpointType": "Standard", + "encryption": { + "keySource": "Microsoft.Storage", + "requireInfrastructureEncryption": false, + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Allow", + "ipRules": [], + "virtualNetworkRules": [] + }, + "publicNetworkAccess": "Enabled", + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2022-09-01", + "kind": "StorageV2", + "location": "eastus", + "name": "[parameters('storageAccounts_saodmsusstg_name')]", + "properties": { + "accessTier": "Hot", + "allowBlobPublicAccess": false, + "allowCrossTenantReplication": true, + "allowSharedKeyAccess": true, + "defaultToOAuthAuthentication": false, + "dnsEndpointType": "Standard", + "encryption": { + "keySource": "Microsoft.Storage", + "requireInfrastructureEncryption": false, + "services": { + "blob": { + "enabled": true, + "keyType": "Account" + }, + "file": { + "enabled": true, + "keyType": "Account" + } + } + }, + "minimumTlsVersion": "TLS1_2", + "networkAcls": { + "bypass": "AzureServices", + "defaultAction": "Allow", + "ipRules": [], + "virtualNetworkRules": [] + }, + "publicNetworkAccess": "Enabled", + "supportsHttpsTrafficOnly": true + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "tags": { + "Environment": "staging", + "Project": "OMDS" + }, + "type": "Microsoft.Storage/storageAccounts" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaustg_name'), '/default')]", + "properties": { + "changeFeed": { + "enabled": false + }, + "containerDeleteRetentionPolicy": { + "enabled": false + }, + "cors": { + "corsRules": [ + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "POST" + ], + "allowedOrigins": [ + "http://localhost:8081" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 28800 + }, + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "POST" + ], + "allowedOrigins": [ + "https://10.1.0.10:4443" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 28800 + }, + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:8180" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 28800 + } + ] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "enabled": false + }, + "isVersioningEnabled": false, + "restorePolicy": { + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseustg_name'), '/default')]", + "properties": { + "changeFeed": { + "enabled": false + }, + "containerDeleteRetentionPolicy": { + "enabled": false + }, + "cors": { + "corsRules": [ + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:8081" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 28800 + }, + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:8180" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 28800 + } + ] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "enabled": false + }, + "isVersioningEnabled": false, + "restorePolicy": { + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default')]", + "properties": { + "changeFeed": { + "enabled": true + }, + "containerDeleteRetentionPolicy": { + "enabled": false + }, + "cors": { + "corsRules": [ + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "POST", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:8081" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 2880 + }, + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "GET", + "POST", + "PUT" + ], + "allowedOrigins": [ + "http://localhost:3100" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 2880 + }, + { + "allowedHeaders": [ + "*" + ], + "allowedMethods": [ + "PUT", + "GET" + ], + "allowedOrigins": [ + "http://localhost:8180" + ], + "exposedHeaders": [ + "*" + ], + "maxAgeInSeconds": 2880 + } + ] + }, + "deleteRetentionPolicy": { + "allowPermanentDelete": false, + "enabled": false + }, + "isVersioningEnabled": true, + "restorePolicy": { + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaustg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 0, + "enabled": false + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseustg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 7, + "enabled": true + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + }, + "protocolSettings": { + "smb": {} + }, + "shareDeleteRetentionPolicy": { + "days": 7, + "enabled": true + } + }, + "sku": { + "name": "Standard_LRS", + "tier": "Standard" + }, + "type": "Microsoft.Storage/storageAccounts/fileServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaustg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseustg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/queueServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaustg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseustg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default')]", + "properties": { + "cors": { + "corsRules": [] + } + }, + "type": "Microsoft.Storage/storageAccounts/tableServices" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusstg_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default/account-11')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusstg_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default/account-15')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsaustg_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsaustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsaustg_name'), '/default/account-2')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmseustg_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmseustg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmseustg_name'), '/default/account-2')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusstg_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default/account-2')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusstg_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default/account-21')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + }, + { + "apiVersion": "2022-09-01", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('storageAccounts_saodmsusstg_name'), 'default')]", + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_saodmsusstg_name'))]" + ], + "name": "[concat(parameters('storageAccounts_saodmsusstg_name'), '/default/account-8')]", + "properties": { + "defaultEncryptionScope": "$account-encryption-key", + "denyEncryptionScopeOverride": false, + "immutableStorageWithVersioning": { + "enabled": false + }, + "publicAccess": "None" + }, + "type": "Microsoft.Storage/storageAccounts/blobServices/containers" + } + ], + "variables": {} +} diff --git a/configurations/pipeline/ODMS Deploy.yml b/configurations/pipeline/ODMS Deploy.yml new file mode 100644 index 0000000..974c77d --- /dev/null +++ b/configurations/pipeline/ODMS Deploy.yml @@ -0,0 +1,122 @@ +# Variable 'static_dictation_deployment_token' was defined in the Variables tab +trigger: + branches: + include: + - refs/heads/develop +jobs: +- job: Job_1 + displayName: Dictation App Service Deploy + pool: + name: odms-deploy-pipeline + steps: + - checkout: self + clean: true + fetchDepth: 1 + - task: Npm@1 + displayName: npm ci + inputs: + command: ci + workingDir: dictation_server + verbose: false + - task: AzureKeyVault@2 + displayName: 'Azure Key Vault: kv-odms-secret-dev' + inputs: + ConnectedServiceName: 82047c72-0cfe-43b0-bb2f-cdfd8b165e68 + KeyVaultName: kv-odms-secret-dev + SecretsFilter: token-public-key + - task: Bash@3 + displayName: Bash Script (Test) + inputs: + targetType: inline + filePath: cd dictation_server && JWT_PUBLIC_KEY="$JWT_PUBLIC_KEY" && npm run test + script: > + cd dictation_server && JWT_PUBLIC_KEY="$JWT_PUBLIC_KEY" && npm run test + - task: Docker@0 + displayName: build + inputs: + azureSubscriptionEndpoint: 827be338-1846-4102-b006-f457c92883d3 + azureContainerRegistry: '{"loginServer":"crodmsregistrymaintenance.azurecr.io", "id" : "/subscriptions/108fb131-cdca-4729-a2be-e5bd8c0b3ba7/resourceGroups/maintenance-rg/providers/Microsoft.ContainerRegistry/registries/crOdmsRegistryMaintenance"}' + dockerFile: DockerfileServerDictation.dockerfile + imageName: $(Build.Repository.Name)/dictation:latest + - task: Docker@0 + displayName: Push + inputs: + azureSubscriptionEndpoint: 827be338-1846-4102-b006-f457c92883d3 + azureContainerRegistry: '{"loginServer":"crodmsregistrymaintenance.azurecr.io", "id" : "/subscriptions/108fb131-cdca-4729-a2be-e5bd8c0b3ba7/resourceGroups/maintenance-rg/providers/Microsoft.ContainerRegistry/registries/crOdmsRegistryMaintenance"}' + action: Push an image + imageName: $(Build.Repository.Name)/dictation:latest +- job: Job_2 + displayName: Dictation Static App Service Deploy + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + clean: true + fetchDepth: 1 + - task: Npm@1 + displayName: npm ci + inputs: + command: ci + workingDir: dictation_client + verbose: false + - task: Bash@3 + displayName: Bash Script + inputs: + targetType: inline + script: cd dictation_client && npm run build + - task: AzureStaticWebApp@0 + displayName: 'Static Web App: ' + inputs: + app_location: /dictation_client/build + config_file_location: /dictation_client + skip_app_build: true + skip_api_build: true + is_static_export: false + verbose: false + azure_static_web_apps_api_token: $(static_dictation_deployment_token) +- job: Job_3 + displayName: DB migration + dependsOn: + - Job_1 + - Job_2 + pool: + name: odms-deploy-pipeline + steps: + - checkout: self + clean: true + fetchDepth: 1 + - task: AzureKeyVault@2 + displayName: 'Azure Key Vault: kv-odms-secret-dev' + inputs: + ConnectedServiceName: 82047c72-0cfe-43b0-bb2f-cdfd8b165e68 + KeyVaultName: kv-odms-secret-dev + - task: CmdLine@2 + displayName: migration + inputs: + script: >2 + # DB接続情報書き換え + sed -i -e "s/DB_NAME/$(db-name)/g" ./dictation_server/db/dbconfig.yml + sed -i -e "s/DB_PASS/$(db-pass)/g" ./dictation_server/db/dbconfig.yml + sed -i -e "s/DB_USERNAME/$(db-user)/g" ./dictation_server/db/dbconfig.yml + sed -i -e "s/DB_PORT/$(db-port)/g" ./dictation_server/db/dbconfig.yml + sed -i -e "s/DB_HOST/$(db-host)/g" ./dictation_server/db/dbconfig.yml + sql-migrate --version + cat ./dictation_server/db/dbconfig.yml + # migration実行 + sql-migrate up -config=./dictation_server/db/dbconfig.yml -env=ci +- job: Job_4 + displayName: Docker Image Clean Up + dependsOn: Job_1 + pool: + name: odms-deploy-pipeline + steps: + - checkout: self + clean: true + fetchDepth: 1 + - task: Docker@0 + displayName: Clean up + inputs: + action: Run a Docker command + imageName: $(Build.Repository.Name)/dictation:latest + customCommand: 'image prune -af ' +... diff --git a/configurations/pipeline/ODMS Staging Deploy.yml b/configurations/pipeline/ODMS Staging Deploy.yml new file mode 100644 index 0000000..6658122 --- /dev/null +++ b/configurations/pipeline/ODMS Staging Deploy.yml @@ -0,0 +1,114 @@ +# Variable 'static_dictation_deployment_token' was defined in the Variables tab +trigger: + branches: + include: + - refs/heads/develop +name: $(date:yyyyMMdd)$(rev:.r) +jobs: +- job: Job_1 + displayName: Dictation App Service Deploy + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + fetchDepth: 2 + - task: Npm@1 + displayName: npm ci + inputs: + command: ci + workingDir: dictation_server + verbose: false + - task: AzureKeyVault@2 + displayName: 'Azure Key Vault: kv-odms-secret-stg' + enabled: False + inputs: + ConnectedServiceName: 82047c72-0cfe-43b0-bb2f-cdfd8b165e68 + KeyVaultName: kv-odms-secret-stg + SecretsFilter: token-public-key + - task: Bash@3 + displayName: Bash Script (Test) + inputs: + targetType: inline + script: cd dictation_server && npm run test + - task: Docker@0 + displayName: build + inputs: + azureSubscriptionEndpoint: 827be338-1846-4102-b006-f457c92883d3 + azureContainerRegistry: '{"loginServer":"crodmsregistrymaintenance.azurecr.io", "id" : "/subscriptions/108fb131-cdca-4729-a2be-e5bd8c0b3ba7/resourceGroups/maintenance-rg/providers/Microsoft.ContainerRegistry/registries/crOdmsRegistryMaintenance"}' + dockerFile: DockerfileServerDictation.dockerfile + imageName: $(Build.Repository.Name)/staging/dictation:latest + - task: Docker@0 + displayName: Push + inputs: + azureSubscriptionEndpoint: 827be338-1846-4102-b006-f457c92883d3 + azureContainerRegistry: '{"loginServer":"crodmsregistrymaintenance.azurecr.io", "id" : "/subscriptions/108fb131-cdca-4729-a2be-e5bd8c0b3ba7/resourceGroups/maintenance-rg/providers/Microsoft.ContainerRegistry/registries/crOdmsRegistryMaintenance"}' + action: Push an image + imageName: $(Build.Repository.Name)/staging/dictation:latest +- job: Job_2 + displayName: Dictation Static App Service Deploy + pool: + vmImage: ubuntu-latest + steps: + - checkout: self + fetchDepth: 2 + - task: Npm@1 + displayName: npm ci + inputs: + command: ci + workingDir: dictation_client + verbose: false + - task: Bash@3 + displayName: Bash Script + inputs: + targetType: inline + script: cd dictation_client && cp -f .env.staging .env && npm run build + - task: AzureStaticWebApp@0 + displayName: 'Static Web App: ' + inputs: + app_location: /dictation_client/build + config_file_location: /dictation_client + skip_app_build: true + skip_api_build: true + is_static_export: false + verbose: false + azure_static_web_apps_api_token: $(static_dictation_deployment_token) +- job: Job_3 + displayName: DB migration + dependsOn: + - Job_1 + - Job_2 + pool: + name: db-migrate-pipelines + steps: + - checkout: self + fetchDepth: 2 + - task: GoTool@0 + displayName: Use Go 1.18 + inputs: + version: 1.18 + - task: Go@0 + displayName: go install + inputs: + command: custom + customCommand: install + arguments: github.com/rubenv/sql-migrate/sql-migrate@latest + - task: AzureKeyVault@2 + displayName: 'Azure Key Vault: kv-odms-secret-stg' + inputs: + ConnectedServiceName: 82047c72-0cfe-43b0-bb2f-cdfd8b165e68 + KeyVaultName: kv-odms-secret-stg + - task: CmdLine@2 + displayName: migration + inputs: + script: >2 + # DB接続情報書き換え + sed -i -e "s/DB_NAME/$(db-name)/g" ./dictation_server/db/dbconfig.yml + sed -i -e "s/DB_PASS/$(db-pass)/g" ./dictation_server/db/dbconfig.yml + sed -i -e "s/DB_USERNAME/$(db-user)/g" ./dictation_server/db/dbconfig.yml + sed -i -e "s/DB_PORT/$(db-port)/g" ./dictation_server/db/dbconfig.yml + sed -i -e "s/DB_HOST/$(db-host)/g" ./dictation_server/db/dbconfig.yml + /home/azureuser/go/bin/sql-migrate --version + cat ./dictation_server/db/dbconfig.yml + # migration実行 + /home/azureuser/go/bin/sql-migrate up -config=dictation_server/db/dbconfig.yml -env=ci +... diff --git a/db/conf/my.cnf b/db/conf/my.cnf new file mode 100644 index 0000000..a85d0be --- /dev/null +++ b/db/conf/my.cnf @@ -0,0 +1,4 @@ +[mysqld] +default_authentication_plugin=mysql_native_password +character-set-server=utf8mb4 +collation-server=utf8mb4_0900_ai_ci \ No newline at end of file diff --git a/db/init/create_shema.sql b/db/init/create_shema.sql new file mode 100644 index 0000000..09fdff5 --- /dev/null +++ b/db/init/create_shema.sql @@ -0,0 +1,3 @@ +CREATE DATABASE IF NOT EXISTS omds_test; +CREATE USER IF NOT EXISTS omdsdbuser@'%' IDENTIFIED BY 'omdsdbpass'; +GRANT ALL PRIVILEGES ON omds_test.* TO omdsdbuser@'%'; diff --git a/dictation_client/.devcontainer/Dockerfile b/dictation_client/.devcontainer/Dockerfile new file mode 100644 index 0000000..e897ee6 --- /dev/null +++ b/dictation_client/.devcontainer/Dockerfile @@ -0,0 +1,32 @@ +FROM node:18.13.0-buster + +RUN /bin/cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime && \ + echo "Asia/Tokyo" > /etc/timezone + +# Options for setup script +ARG INSTALL_ZSH="true" +ARG UPGRADE_PACKAGES="false" +ARG USERNAME=vscode +# 1000 はnodeで使われているためずらす +ARG USER_UID=1001 +ARG USER_GID=$USER_UID + +# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies. +COPY library-scripts/common-debian.sh /tmp/library-scripts/ +RUN bash /tmp/library-scripts/common-debian.sh "${INSTALL_ZSH}" "${USERNAME}" "${USER_UID}" "${USER_GID}" "${UPGRADE_PACKAGES}" \ + && apt-get install default-jre -y \ + && apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts + +# Install mob +RUN curl -sL install.mob.sh | sh + +# 以下 ユーザー権限で実施 +USER $USERNAME + +# copy init-script +COPY --chown=$USERNAME:$USERNAME init.sh /home/${USERNAME}/ +RUN chmod +x /home/${USERNAME}/init.sh + +# 初期化を行う +# node imageのデフォルトENTRYPOINTが邪魔するため上書き +ENTRYPOINT /home/vscode/init.sh diff --git a/dictation_client/.devcontainer/devcontainer.json b/dictation_client/.devcontainer/devcontainer.json new file mode 100644 index 0000000..6d00742 --- /dev/null +++ b/dictation_client/.devcontainer/devcontainer.json @@ -0,0 +1,49 @@ +// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at: +// https://github.com/microsoft/vscode-dev-containers/tree/v0.137.0/containers/go +{ + "name": "Dev Dictation Client", + "dockerComposeFile": [ + "./docker-compose.yml" + ], + "service": "dictation_client", + // コンテナを自動停止させない + "shutdownAction": "none", + "workspaceFolder": "/app/dictation_client", + "runArgs": [ + "--cap-add=SYS_PTRACE", + "--security-opt", + "seccomp=unconfined" + ], + // Set *default* container specific settings.json values on container create. + "settings": { + "terminal.integrated.shell.linux": "/bin/bash", + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true, // eslint + "source.fixAll.stylelint": true // Stylelint + }, + // formatter + "editor.defaultFormatter": "esbenp.prettier-vscode", // デフォルトフォーマッターをPrettier + "editor.formatOnSave": true, + "editor.formatOnPaste": true, + "editor.formatOnType": true, + "editor.renderWhitespace": "all", + "editor.insertSpaces": false, + "editor.renderLineHighlight": "all" + }, + // Add the IDs of extensions you want installed when the container is created. + "extensions": [ + "dbaeumer.vscode-eslint", + "salbert.comment-ts", + "gruntfuggly.todo-tree", + "esbenp.prettier-vscode", + "ms-vsliveshare.vsliveshare", + "albymor.increment-selection", + "eamodio.gitlens", + "wmaurer.change-case" + ], + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "yarn install", + "postCreateCommand": "sudo chown -R vscode:vscode /app/dictation_client", + // Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root. + "remoteUser": "vscode" +} \ No newline at end of file diff --git a/dictation_client/.devcontainer/docker-compose.yml b/dictation_client/.devcontainer/docker-compose.yml new file mode 100644 index 0000000..491fe15 --- /dev/null +++ b/dictation_client/.devcontainer/docker-compose.yml @@ -0,0 +1,21 @@ +version: "3" + +services: + dictation_client: + build: . + working_dir: /app/dictation_client + ports: + - "3001:3001" + - "6007:6007" + volumes: + - ../../:/app + - node_modules:/app/dictation_client/node_modules + expose: + - "3001" + - "6007" + environment: + - CHOKIDAR_USEPOLLING=true + +# Data Volume として永続化する +volumes: + node_modules: diff --git a/dictation_client/.devcontainer/init.sh b/dictation_client/.devcontainer/init.sh new file mode 100644 index 0000000..55d9cb6 --- /dev/null +++ b/dictation_client/.devcontainer/init.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Init Script for client Container +# + +echo [init.sh] dictation_client initialize. + +# /app の権限がデフォルトでは node ユーザーになっているため、 +# 権限確認し、vscode ユーザでない場合付け替える +ls -ld /app | grep vscode +if [ $? -ne 0 ]; then + echo [init.sh] change /app owner to vscode. + sudo chown -R vscode:vscode /app +fi + +cd /app/dictation_client +echo [init.sh] \"npm ci\" start. +npm ci + +echo [init.sh] initialize completed! + +sleep infinity diff --git a/dictation_client/.devcontainer/library-scripts/common-debian.sh b/dictation_client/.devcontainer/library-scripts/common-debian.sh new file mode 100644 index 0000000..ab72bf5 --- /dev/null +++ b/dictation_client/.devcontainer/library-scripts/common-debian.sh @@ -0,0 +1,190 @@ +#!/usr/bin/env bash +#------------------------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. +#------------------------------------------------------------------------------------------------------------- + +# Syntax: ./common-debian.sh [install zsh flag] [username] [user UID] [user GID] [upgrade packages flag] + +INSTALL_ZSH=${1:-"true"} +USERNAME=${2:-"vscode"} +USER_UID=${3:-1000} +USER_GID=${4:-1000} +UPGRADE_PACKAGES=${5:-"true"} + +set -e + +if [ "$(id -u)" -ne 0 ]; then + echo -e 'Script must be run a root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.' + exit 1 +fi + +# Treat a user name of "none" as root +if [ "${USERNAME}" = "none" ] || [ "${USERNAME}" = "root" ]; then + USERNAME=root + USER_UID=0 + USER_GID=0 +fi + +# Load markers to see which steps have already run +MARKER_FILE="/usr/local/etc/vscode-dev-containers/common" +if [ -f "${MARKER_FILE}" ]; then + echo "Marker file found:" + cat "${MARKER_FILE}" + source "${MARKER_FILE}" +fi + +# Ensure apt is in non-interactive to avoid prompts +export DEBIAN_FRONTEND=noninteractive + +# Function to call apt-get if needed +apt-get-update-if-needed() +{ + if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then + echo "Running apt-get update..." + apt-get update + else + echo "Skipping apt-get update." + fi +} + +# Run install apt-utils to avoid debconf warning then verify presence of other common developer tools and dependencies +if [ "${PACKAGES_ALREADY_INSTALLED}" != "true" ]; then + apt-get-update-if-needed + + PACKAGE_LIST="apt-utils \ + git \ + openssh-client \ + less \ + iproute2 \ + procps \ + curl \ + wget \ + unzip \ + zip \ + nano \ + jq \ + lsb-release \ + ca-certificates \ + apt-transport-https \ + dialog \ + gnupg2 \ + libc6 \ + libgcc1 \ + libgssapi-krb5-2 \ + libicu[0-9][0-9] \ + liblttng-ust0 \ + libstdc++6 \ + zlib1g \ + locales \ + sudo" + + # Install libssl1.1 if available + if [[ ! -z $(apt-cache --names-only search ^libssl1.1$) ]]; then + PACKAGE_LIST="${PACKAGE_LIST} libssl1.1" + fi + + # Install appropriate version of libssl1.0.x if available + LIBSSL=$(dpkg-query -f '${db:Status-Abbrev}\t${binary:Package}\n' -W 'libssl1\.0\.?' 2>&1 || echo '') + if [ "$(echo "$LIBSSL" | grep -o 'libssl1\.0\.[0-9]:' | uniq | sort | wc -l)" -eq 0 ]; then + if [[ ! -z $(apt-cache --names-only search ^libssl1.0.2$) ]]; then + # Debian 9 + PACKAGE_LIST="${PACKAGE_LIST} libssl1.0.2" + elif [[ ! -z $(apt-cache --names-only search ^libssl1.0.0$) ]]; then + # Ubuntu 18.04, 16.04, earlier + PACKAGE_LIST="${PACKAGE_LIST} libssl1.0.0" + fi + fi + + echo "Packages to verify are installed: ${PACKAGE_LIST}" + apt-get -y install --no-install-recommends ${PACKAGE_LIST} 2> >( grep -v 'debconf: delaying package configuration, since apt-utils is not installed' >&2 ) + + PACKAGES_ALREADY_INSTALLED="true" +fi + +# Get to latest versions of all packages +if [ "${UPGRADE_PACKAGES}" = "true" ]; then + apt-get-update-if-needed + apt-get -y upgrade --no-install-recommends + apt-get autoremove -y +fi + +# Ensure at least the en_US.UTF-8 UTF-8 locale is available. +# Common need for both applications and things like the agnoster ZSH theme. +if [ "${LOCALE_ALREADY_SET}" != "true" ]; then + echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen + locale-gen + LOCALE_ALREADY_SET="true" +fi + +# Create or update a non-root user to match UID/GID - see https://aka.ms/vscode-remote/containers/non-root-user. +if id -u $USERNAME > /dev/null 2>&1; then + # User exists, update if needed + if [ "$USER_GID" != "$(id -G $USERNAME)" ]; then + groupmod --gid $USER_GID $USERNAME + usermod --gid $USER_GID $USERNAME + fi + if [ "$USER_UID" != "$(id -u $USERNAME)" ]; then + usermod --uid $USER_UID $USERNAME + fi +else + # Create user + groupadd --gid $USER_GID $USERNAME + useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME +fi + +# Add add sudo support for non-root user +if [ "${USERNAME}" != "root" ] && [ "${EXISTING_NON_ROOT_USER}" != "${USERNAME}" ]; then + echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME + chmod 0440 /etc/sudoers.d/$USERNAME + EXISTING_NON_ROOT_USER="${USERNAME}" +fi + +# .bashrc/.zshrc snippet +RC_SNIPPET="$(cat << EOF +export USER=\$(whoami) + +export PATH=\$PATH:\$HOME/.local/bin + +if [[ \$(which code-insiders 2>&1) && ! \$(which code 2>&1) ]]; then + alias code=code-insiders +fi +EOF +)" + +# Ensure ~/.local/bin is in the PATH for root and non-root users for bash. (zsh is later) +if [ "${RC_SNIPPET_ALREADY_ADDED}" != "true" ]; then + echo "${RC_SNIPPET}" | tee -a /root/.bashrc >> /etc/skel/.bashrc + if [ "${USERNAME}" != "root" ]; then + echo "${RC_SNIPPET}" >> /home/$USERNAME/.bashrc + chown $USER_UID:$USER_GID /home/$USERNAME/.bashrc + fi + RC_SNIPPET_ALREADY_ADDED="true" +fi + +# Optionally install and configure zsh +if [ "${INSTALL_ZSH}" = "true" ] && [ ! -d "/root/.oh-my-zsh" ] && [ "${ZSH_ALREADY_INSTALLED}" != "true" ]; then + apt-get-update-if-needed + apt-get install -y zsh + curl -fsSLo- https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh | bash 2>&1 + echo -e "${RC_SNIPPET}\nDEFAULT_USER=\$USER\nprompt_context(){}" >> /root/.zshrc + cp -fR /root/.oh-my-zsh /etc/skel + cp -f /root/.zshrc /etc/skel + sed -i -e "s/\/root\/.oh-my-zsh/\/home\/\$(whoami)\/.oh-my-zsh/g" /etc/skel/.zshrc + if [ "${USERNAME}" != "root" ]; then + cp -fR /etc/skel/.oh-my-zsh /etc/skel/.zshrc /home/$USERNAME + chown -R $USER_UID:$USER_GID /home/$USERNAME/.oh-my-zsh /home/$USERNAME/.zshrc + fi + ZSH_ALREADY_INSTALLED="true" +fi + +# Write marker file +mkdir -p "$(dirname "${MARKER_FILE}")" +echo -e "\ + PACKAGES_ALREADY_INSTALLED=${PACKAGES_ALREADY_INSTALLED}\n\ + LOCALE_ALREADY_SET=${LOCALE_ALREADY_SET}\n\ + EXISTING_NON_ROOT_USER=${EXISTING_NON_ROOT_USER}\n\ + RC_SNIPPET_ALREADY_ADDED=${RC_SNIPPET_ALREADY_ADDED}\n\ + ZSH_ALREADY_INSTALLED=${ZSH_ALREADY_INSTALLED}" > "${MARKER_FILE}" + +echo "Done!" \ No newline at end of file diff --git a/dictation_client/.env b/dictation_client/.env new file mode 100644 index 0000000..663f4e6 --- /dev/null +++ b/dictation_client/.env @@ -0,0 +1,5 @@ +VITE_STAGE=develop +VITE_B2C_CLIENTID=5eb34cba-84b6-46f9-a0ea-bc5c41157d63 +VITE_B2C_AUTHORITY=https://adb2codmsdev.b2clogin.com/adb2codmsdev.onmicrosoft.com/b2c_1_signin_dev +VITE_B2C_KNOWNAUTHORITIES=adb2codmsdev.b2clogin.com +VITE_DESK_TOP_APP_SCHEME=odms-desktopapp \ No newline at end of file diff --git a/dictation_client/.env.local.example b/dictation_client/.env.local.example new file mode 100644 index 0000000..64d94d4 --- /dev/null +++ b/dictation_client/.env.local.example @@ -0,0 +1,5 @@ +VITE_STAGE=local +VITE_B2C_CLIENTID=XXXX-XXXX-XXXXX-XXXX +VITE_B2C_AUTHORITY=https://adb2XXXX.XXXX.com/adb2XXXX.onmicrosoft.com/XXXX +VITE_B2C_KNOWNAUTHORITIES=adb2cXXXX.XXXx.com +VITE_DESK_TOP_APP_SCHEME=odms-desktopapp \ No newline at end of file diff --git a/dictation_client/.env.staging b/dictation_client/.env.staging new file mode 100644 index 0000000..b4beb04 --- /dev/null +++ b/dictation_client/.env.staging @@ -0,0 +1,5 @@ +VITE_STAGE=staging +VITE_B2C_CLIENTID=5d8f0db9-4506-41d6-a5bb-5ec39f6eba8d +VITE_B2C_AUTHORITY=https://adb2codmsstg.b2clogin.com/adb2codmsstg.onmicrosoft.com/b2c_1_signin_stg +VITE_B2C_KNOWNAUTHORITIES=adb2codmsstg.b2clogin.com +VITE_DESK_TOP_APP_SCHEME=odms-desktopapp \ No newline at end of file diff --git a/dictation_client/.eslintignore b/dictation_client/.eslintignore new file mode 100644 index 0000000..5b42489 --- /dev/null +++ b/dictation_client/.eslintignore @@ -0,0 +1,9 @@ +node_modules/ +build/ +.eslintrc.js +jest.config.js +vite.config.ts +.env.local + +# デザイナのcssから生成するため除外 +src/styles/app.module.scss.d.ts \ No newline at end of file diff --git a/dictation_client/.eslintrc.js b/dictation_client/.eslintrc.js new file mode 100644 index 0000000..88b4f1b --- /dev/null +++ b/dictation_client/.eslintrc.js @@ -0,0 +1,150 @@ +module.exports = { + env: { + browser: true, + }, + extends: [ + "airbnb", + "plugin:@typescript-eslint/recommended", + "plugin:react/recommended", + "prettier", + ], + parser: "@typescript-eslint/parser", + parserOptions: { + project: "./tsconfig.json", + ecmaFeatures: { + jsx: true, + }, + ecmaVersion: 12, + sourceType: "module", + }, + plugins: [ + "react", + "@typescript-eslint", + "prettier", + "react-hooks", + "prefer-arrow", + ], + rules: { + "react/jsx-uses-react": "off", + "react/react-in-jsx-scope": "off", + "react/function-component-definition": [ + "error", + { + namedComponents: "arrow-function", + unnamedComponents: "arrow-function", + }, + ], + "react/jsx-filename-extension": [ + "error", + { + extensions: ["jsx", "tsx"], + }, + ], + "import/extensions": [ + "error", + "ignorePackages", + { + js: "never", + jsx: "never", + ts: "never", + tsx: "never", + }, + ], + "import/no-unresolved": "off", + "import/prefer-default-export": "off", + "no-use-before-define": 0, + "prettier/prettier": "error", + "no-param-reassign": 0, + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/prefer-interface": "off", + "@typescript-eslint/indent": "off", + "react-hooks/rules-of-hooks": "error", + // Checks rules of Hooks + "react-hooks/exhaustive-deps": "warn", + // Checks effect dependencies + "import/no-extraneous-dependencies": [ + "error", + { + devDependencies: [ + "**/*.test.js", + "**/*.spec.js", + "**/*.test.ts", + "**/*.spec.ts", + "**/*.test.tsx", + "**/*.spec.tsx", + "**/setupTests.ts", + ], + }, + ], + camelcase: "off", + "prefer-arrow/prefer-arrow-functions": [ + "error", + { + disallowPrototype: true, + singleReturnOnly: false, + classPropertiesAllowed: false, + }, + ], + "func-style": [ + "error", + "expression", + { + allowArrowFunctions: true, + }, + ], + "react/no-multi-comp": ["error"], + "react/jsx-pascal-case": ["error"], + "@typescript-eslint/naming-convention": [ + "error", // default config + { + selector: "default", + format: ["camelCase"], + leadingUnderscore: "allow", + trailingUnderscore: "allow", + }, + { + selector: "variable", + format: ["camelCase", "UPPER_CASE"], + leadingUnderscore: "allow", + trailingUnderscore: "allow", + }, + { + selector: "typeLike", + format: ["PascalCase"], + }, // custom config + { + selector: ["property"], + format: ["camelCase", "PascalCase"], + }, + { + selector: ["variable"], + types: ["function"], + format: ["camelCase", "PascalCase"], + }, + { + selector: "interface", + format: ["PascalCase"], + custom: { + regex: "^I[A-Z]", + match: false, + }, + }, + ], + "max-lines": ["error", 3000], + "jsx-a11y/anchor-is-valid": "off", + }, + settings: { + "import/parsers": { + "@typescript-eslint/parser": [".ts", ".tsx"], + }, + "import/resolver": { + node: { + extensions: [".js", "jsx", ".ts", ".tsx"], + paths: ["src"], + }, + }, + react: { + version: "detect", + }, + }, +}; diff --git a/dictation_client/.gitignore b/dictation_client/.gitignore new file mode 100644 index 0000000..4723290 --- /dev/null +++ b/dictation_client/.gitignore @@ -0,0 +1,24 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.env.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +.eslintcache + +# credentials +credentials diff --git a/dictation_client/.vscode/launch.json b/dictation_client/.vscode/launch.json new file mode 100644 index 0000000..0e0bcc8 --- /dev/null +++ b/dictation_client/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Chrome", + "type": "pwa-chrome", + "request": "launch", + "port": 9222, + "url": "http://localhost:3000", + "webRoot": "${workspaceFolder}/src", + "trace": true, + "sourceMaps": true + } + ] +} \ No newline at end of file diff --git a/dictation_client/.vscode/settings.json b/dictation_client/.vscode/settings.json new file mode 100644 index 0000000..4ec4dc1 --- /dev/null +++ b/dictation_client/.vscode/settings.json @@ -0,0 +1,38 @@ +{ + "todo-tree.general.tags": ["TODO", "FIXME", "DEBUG", "XXX"], + "todo-tree.highlights.customHighlight": { + "TODO": { + "foreground": "white", + "background": "#ffa500", + "iconColour": "green" + }, + "FIXME": { + "foreground": "white", + "background": "#ff69b4", + "iconColour": "yellow" + }, + "DEBUG": { + "foreground": "white", + "background": "#a52a2a", + "icon": "bug", + "iconColour": "green" + }, + "XXX": { + "foreground": "white", + "background": "#ff6347", + "icon": "eye-closed", + "iconColour": "red" + } + }, + "debug.javascript.usePreview": false, + "editor.copyWithSyntaxHighlighting": false, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true, + "source.fixAll.stylelint": true + }, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "editor.formatOnPaste": true, + "editor.formatOnType": true, + "prettier.disableLanguages": ["markdown"] +} diff --git a/dictation_client/README.md b/dictation_client/README.md new file mode 100644 index 0000000..903ec51 --- /dev/null +++ b/dictation_client/README.md @@ -0,0 +1,46 @@ +# Getting Started with Create React App + +This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app), using the [Redux](https://redux.js.org/) and [Redux Toolkit](https://redux-toolkit.js.org/) TS template. + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.\ +Open [http://localhost:3001](http://localhost:3001) to view it in the browser. + +The page will reload if you make edits.\ +You will also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.\ +See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.\ +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.\ +Your app is ready to be deployed! + +See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can’t go back!** + +If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. + +You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. + +## Learn More + +You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). + +To learn React, check out the [React documentation](https://reactjs.org/). diff --git a/dictation_client/codegen.sh b/dictation_client/codegen.sh new file mode 100644 index 0000000..5d09ae3 --- /dev/null +++ b/dictation_client/codegen.sh @@ -0,0 +1,2 @@ +npx openapi-generator-cli version-manager set latest +npx openapi-generator-cli generate -g typescript-axios -i /app/dictation_server/src/api/odms/openapi.json -o /app/dictation_client/src/api/ diff --git a/dictation_client/index.html b/dictation_client/index.html new file mode 100644 index 0000000..d23453a --- /dev/null +++ b/dictation_client/index.html @@ -0,0 +1,14 @@ + + +
+ + + +