>${serviceShort}001'
location: resourceGroup.location
lock: 'CanNotDelete'
roleAssignments: [
@@ -202,9 +202,6 @@ module testDeployment '../../deploy.bicep' = {
time: '0000'
}
notificationSettingsStatus: 'Enabled'
- notificationSettingsEmailRecipient: 'mail@contosodtlmail.com'
- notificationSettingsWebhookUrl: 'https://webhook.contosotest.com'
- notificationSettingsNotificationLocale: 'en'
notificationSettingsTimeInMinutes: 30
}
{
@@ -224,6 +221,20 @@ module testDeployment '../../deploy.bicep' = {
}
}
]
+ notificationChannels: [
+ {
+ name: 'AutoShutdown'
+ description: 'Integration configured for auto-shutdown'
+ events: [
+ {
+ eventName: 'AutoShutdown'
+ }
+ ]
+ emailRecipient: 'mail@contosodtlmail.com'
+ webhookUrl: 'https://webhook.contosotest.com'
+ notificationLocale: 'en'
+ }
+ ]
artifactSources: [
{
name: 'Public Repo'
diff --git a/modules/Microsoft.DevTestLab/labs/deploy.bicep b/modules/Microsoft.DevTestLab/labs/deploy.bicep
index c3ee4d1f34..ae172ff6f1 100644
--- a/modules/Microsoft.DevTestLab/labs/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/deploy.bicep
@@ -103,6 +103,9 @@ param policies array = []
@description('Optional. Schedules to create for the lab.')
param schedules array = []
+@description('Conditional. Notification Channels to create for the lab. Required if the schedules property "notificationSettingsStatus" is set to "Enabled.')
+param notificationChannels array = []
+
@description('Optional. Artifact sources to create for the lab.')
param artifactSources array = []
@@ -167,9 +170,9 @@ module lab_virtualNetworks 'virtualNetworks/deploy.bicep' = [for (virtualNetwork
params: {
labName: lab.name
name: virtualNetwork.name
- externalProviderResourceId: virtualNetwork.externalProviderResourceId
location: location
tags: tags
+ externalProviderResourceId: virtualNetwork.externalProviderResourceId
description: contains(virtualNetwork, 'description') ? virtualNetwork.description : ''
allowedSubnets: contains(virtualNetwork, 'allowedSubnets') ? virtualNetwork.allowedSubnets : []
subnetOverrides: contains(virtualNetwork, 'subnetOverrides') ? virtualNetwork.subnetOverrides : []
@@ -209,14 +212,27 @@ module lab_schedules 'schedules/deploy.bicep' = [for (schedule, index) in schedu
targetResourceId: contains(schedule, 'targetResourceId') ? schedule.targetResourceId : ''
timeZoneId: contains(schedule, 'timeZoneId') ? schedule.timeZoneId : 'Pacific Standard time'
notificationSettingsStatus: contains(schedule, 'notificationSettingsStatus') ? schedule.notificationSettingsStatus : 'Disabled'
- notificationSettingsEmailRecipient: contains(schedule, 'notificationSettingsEmailRecipient') ? schedule.notificationSettingsEmailRecipient : ''
- notificationSettingsWebhookUrl: contains(schedule, 'notificationSettingsWebhookUrl') ? schedule.notificationSettingsWebhookUrl : ''
- notificationSettingsNotificationLocale: contains(schedule, 'notificationSettingsNotificationLocale') ? schedule.notificationSettingsNotificationLocale : 'en'
notificationSettingsTimeInMinutes: contains(schedule, 'notificationSettingsTimeInMinutes') ? schedule.notificationSettingsTimeInMinutes : 30
enableDefaultTelemetry: enableReferencedModulesTelemetry
}
}]
+module lab_notificationChannels 'notificationChannels/deploy.bicep' = [for (notificationChannel, index) in notificationChannels: {
+ name: '${uniqueString(deployment().name, location)}-Lab-NotificationChannels-${index}'
+ params: {
+ labName: lab.name
+ name: notificationChannel.name
+ location: location
+ tags: tags
+ description: contains(notificationChannel, 'description') ? notificationChannel.description : ''
+ events: notificationChannel.events
+ emailRecipient: contains(notificationChannel, 'emailRecipient') ? notificationChannel.emailRecipient : ''
+ webhookUrl: contains(notificationChannel, 'webhookUrl') ? notificationChannel.webhookUrl : ''
+ notificationLocale: contains(notificationChannel, 'notificationLocale') ? notificationChannel.notificationLocale : 'en'
+ enableDefaultTelemetry: enableReferencedModulesTelemetry
+ }
+}]
+
module lab_artifactSources 'artifactSources/deploy.bicep' = [for (artifactSource, index) in artifactSources: {
name: '${uniqueString(deployment().name, location)}-Lab-ArtifactSources-${index}'
params: {
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep b/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
new file mode 100644
index 0000000000..b5ad938502
--- /dev/null
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
@@ -0,0 +1,68 @@
+@sys.description('Conditional. The name of the parent lab. Required if the template is used in a standalone deployment.')
+param labName string
+
+@sys.description('Required. The name of the notification channel.')
+param name string
+
+@sys.description('Optional. Location for all Resources.')
+param location string = resourceGroup().location
+
+@sys.description('Optional. Tags of the resource.')
+param tags object = {}
+
+@sys.description('Optional. Description of notification.')
+param description string = ''
+
+@sys.description('Required. The list of event for which this notification is enabled.')
+param events array = []
+
+@sys.description('Conditional. The email recipient to send notifications to (can be a list of semi-colon separated email addresses). Required if "webhookUrl" is empty.')
+param emailRecipient string = ''
+
+@sys.description('Conditional. The webhook URL to which the notification will be sent. Required if "emailRecipient" is empty.')
+param webhookUrl string = ''
+
+@sys.description('Optional. The locale to use when sending a notification (fallback for unsupported languages is EN). Default is "en".')
+param notificationLocale string = 'en'
+
+@sys.description('Optional. Enable telemetry via a Globally Unique Identifier (GUID).')
+param enableDefaultTelemetry bool = true
+
+resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (enableDefaultTelemetry) {
+ name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name, location)}'
+ properties: {
+ mode: 'Incremental'
+ template: {
+ '$schema': 'https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#'
+ contentVersion: '1.0.0.0'
+ resources: []
+ }
+ }
+}
+
+resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' existing = {
+ name: labName
+}
+
+resource notificationChannel 'Microsoft.DevTestLab/labs/notificationchannels@2018-10-15-preview' = {
+ name: name
+ parent: lab
+ location: location
+ tags: tags
+ properties: {
+ description: description
+ events: events
+ emailRecipient: emailRecipient
+ webhookUrl: webhookUrl
+ notificationLocale: notificationLocale
+ }
+}
+
+@sys.description('The name of the notification channel.')
+output name string = notificationChannel.name
+
+@sys.description('The resource ID of the notification channel.')
+output resourceId string = notificationChannel.id
+
+@sys.description('The name of the resource group the notification channel was created in.')
+output resourceGroupName string = resourceGroup().name
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/version.json b/modules/Microsoft.DevTestLab/labs/notificationChannels/version.json
new file mode 100644
index 0000000000..56f8d9ca40
--- /dev/null
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/version.json
@@ -0,0 +1,4 @@
+{
+ "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
+ "version": "0.4"
+}
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep b/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
index 1549aa038d..5de21c9992 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
@@ -50,29 +50,12 @@ param timeZoneId string = 'Pacific Standard time'
@sys.description('Optional. If notifications are enabled for this schedule (i.e. Enabled, Disabled). Default is "Disabled".')
param notificationSettingsStatus string = 'Disabled'
-@sys.description('Conditional. The email recipient to send notifications to (can be a list of semi-colon separated email addresses). Required if "notificationSettingsStatus" is set to "Enabled" and "notificationSettingsWebhookUrl" is empty.')
-param notificationSettingsEmailRecipient string = ''
-
-@sys.description('Conditional. The webhook URL to which the notification will be sent. Required if "notificationSettingsStatus" is set to "Enabled" and "notificationSettingsWebhookUrl" is empty.')
-param notificationSettingsWebhookUrl string = ''
-
-@sys.description('Optional. The locale to use when sending a notification (fallback for unsupported languages is EN). Optional if "notificationSettingsStatus" is set to "Enabled". Default is "en".')
-param notificationSettingsNotificationLocale string = 'en'
-
-@sys.description('Optional. Time in minutes before event at which notification will be sent. Default is "30". Optional if "notificationSettingsStatus" is set to "Enabled". Default is 30 minutes.')
+@sys.description('Optional. Time in minutes before event at which notification will be sent. Optional if "notificationSettingsStatus" is set to "Enabled". Default is 30 minutes.')
param notificationSettingsTimeInMinutes int = 30
@sys.description('Optional. Enable telemetry via a Globally Unique Identifier (GUID).')
param enableDefaultTelemetry bool = true
-var notificationSettings = notificationSettingsStatus == 'Enabled' ? {
- status: notificationSettingsStatus
- emailRecipient: notificationSettingsEmailRecipient
- webhookUrl: notificationSettingsWebhookUrl
- notificationLocale: notificationSettingsNotificationLocale
- timeInMinutes: notificationSettingsTimeInMinutes
-} : {}
-
resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (enableDefaultTelemetry) {
name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name, location)}'
properties: {
@@ -102,7 +85,10 @@ resource schedule 'Microsoft.DevTestLab/labs/schedules@2018-10-15-preview' = {
status: status
targetResourceId: !empty(targetResourceId) ? targetResourceId : null
timeZoneId: timeZoneId
- notificationSettings: notificationSettings
+ notificationSettings: notificationSettingsStatus == 'Enabled' ? {
+ status: notificationSettingsStatus
+ timeInMinutes: notificationSettingsTimeInMinutes
+ } : {}
}
}
From 8bd4009c3e465a5c28515e9a0aa4363c2f4708da Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Tue, 27 Dec 2022 12:34:42 +1100
Subject: [PATCH 09/18] added readmes v1
---
.../labs/artifactSources/readme.md | 101 +++
.../labs/notificationChannels/readme.md | 99 +++
.../labs/policySets/policies/readme.md | 101 +++
modules/Microsoft.DevTestLab/labs/readme.md | 771 ++++++++++++++++++
.../labs/schedules/readme.md | 103 +++
.../labs/virtualNetworks/readme.md | 98 +++
6 files changed, 1273 insertions(+)
create mode 100644 modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
create mode 100644 modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
create mode 100644 modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
create mode 100644 modules/Microsoft.DevTestLab/labs/readme.md
create mode 100644 modules/Microsoft.DevTestLab/labs/schedules/readme.md
create mode 100644 modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
new file mode 100644
index 0000000000..0799275964
--- /dev/null
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
@@ -0,0 +1,101 @@
+# DevTestLab Labs ArtifactSources `[Microsoft.DevTestLab/labs/artifactSources]`
+
+This module deploys DevTestLab Labs ArtifactSources.
+
+## Navigation
+
+- [DevTestLab Labs ArtifactSources `[Microsoft.DevTestLab/labs/artifactSources]`](#devtestlab-labs-artifactsources-microsoftdevtestlablabsartifactsources)
+ - [Navigation](#navigation)
+ - [Resource Types](#resource-types)
+ - [Parameters](#parameters)
+ - [Parameter Usage: `tags`](#parameter-usage-tags)
+ - [Outputs](#outputs)
+ - [Cross-referenced modules](#cross-referenced-modules)
+
+## Resource Types
+
+| Resource Type | API Version |
+| :-- | :-- |
+| `Microsoft.DevTestLab/labs/artifactsources` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/artifactsources) |
+
+## Parameters
+
+**Required parameters**
+
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+| `name` | string | The name of the artifact source. |
+| `uri` | string | The artifact source's URI. |
+
+**Conditional parameters**
+
+| Parameter Name | Type | Default Value | Description |
+| :-- | :-- | :-- | :-- |
+| `armTemplateFolderPath` | string | `''` | The folder containing Azure Resource Manager templates. Required if "folderPath" is empty. |
+| `folderPath` | string | `''` | The folder containing artifacts. At least one folder path is required. Required if "armTemplateFolderPath" is empty. |
+| `labName` | string | | The name of the parent lab. Required if the template is used in a standalone deployment. |
+
+**Optional parameters**
+
+| Parameter Name | Type | Default Value | Allowed Values | Description |
+| :-- | :-- | :-- | :-- | :-- |
+| `branchRef` | string | `''` | | The artifact source's branch reference (E.g. main or master) |
+| `displayName` | string | `[parameters('name')]` | | The artifact source's display name. Default is the name of the artifact source. |
+| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
+| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
+| `securityToken` | secureString | `''` | | The security token to authenticate to the artifact source. |
+| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | Indicates if the artifact source is enabled (values: Enabled, Disabled). Default is "Enabled". |
+| `tags` | object | `{object}` | | Tags of the resource. |
+
+### Parameter Usage: `tags`
+
+Tag names and tag values can be provided as needed. A tag can be left without a value.
+
+
+
+Parameter JSON format
+
+```json
+"tags": {
+ "value": {
+ "Environment": "Non-Prod",
+ "Contact": "test.user@testcompany.com",
+ "PurchaseOrder": "1234",
+ "CostCenter": "7890",
+ "ServiceName": "DeploymentValidation",
+ "Role": "DeploymentValidation"
+ }
+}
+```
+
+
+
+
+
+Bicep format
+
+```bicep
+tags: {
+ Environment: 'Non-Prod'
+ Contact: 'test.user@testcompany.com'
+ PurchaseOrder: '1234'
+ CostCenter: '7890'
+ ServiceName: 'DeploymentValidation'
+ Role: 'DeploymentValidation'
+}
+```
+
+
+
+
+## Outputs
+
+| Output Name | Type | Description |
+| :-- | :-- | :-- |
+| `name` | string | The name of the artifact source. |
+| `resourceGroupName` | string | The name of the resource group the artifact source was created in. |
+| `resourceId` | string | The resource ID of the artifact source. |
+
+## Cross-referenced modules
+
+_None_
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
new file mode 100644
index 0000000000..ccadcc21b1
--- /dev/null
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
@@ -0,0 +1,99 @@
+# DevTestLab Labs NotificationChannels `[Microsoft.DevTestLab/labs/notificationChannels]`
+
+This module deploys DevTestLab Labs NotificationChannels.
+
+## Navigation
+
+- [DevTestLab Labs NotificationChannels `[Microsoft.DevTestLab/labs/notificationChannels]`](#devtestlab-labs-notificationchannels-microsoftdevtestlablabsnotificationchannels)
+ - [Navigation](#navigation)
+ - [Resource Types](#resource-types)
+ - [Parameters](#parameters)
+ - [Parameter Usage: `tags`](#parameter-usage-tags)
+ - [Outputs](#outputs)
+ - [Cross-referenced modules](#cross-referenced-modules)
+
+## Resource Types
+
+| Resource Type | API Version |
+| :-- | :-- |
+| `Microsoft.DevTestLab/labs/notificationchannels` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/notificationchannels) |
+
+## Parameters
+
+**Required parameters**
+
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+| `events` | array | The list of event for which this notification is enabled. |
+| `name` | string | The name of the notification channel. |
+
+**Conditional parameters**
+
+| Parameter Name | Type | Default Value | Description |
+| :-- | :-- | :-- | :-- |
+| `emailRecipient` | string | `''` | The email recipient to send notifications to (can be a list of semi-colon separated email addresses). Required if "webhookUrl" is empty. |
+| `labName` | string | | The name of the parent lab. Required if the template is used in a standalone deployment. |
+| `webhookUrl` | string | `''` | The webhook URL to which the notification will be sent. Required if "emailRecipient" is empty. |
+
+**Optional parameters**
+
+| Parameter Name | Type | Default Value | Description |
+| :-- | :-- | :-- | :-- |
+| `description` | string | `''` | Description of notification. |
+| `enableDefaultTelemetry` | bool | `True` | Enable telemetry via a Globally Unique Identifier (GUID). |
+| `location` | string | `[resourceGroup().location]` | Location for all Resources. |
+| `notificationLocale` | string | `'en'` | The locale to use when sending a notification (fallback for unsupported languages is EN). Default is "en". |
+| `tags` | object | `{object}` | Tags of the resource. |
+
+### Parameter Usage: `tags`
+
+Tag names and tag values can be provided as needed. A tag can be left without a value.
+
+
+
+Parameter JSON format
+
+```json
+"tags": {
+ "value": {
+ "Environment": "Non-Prod",
+ "Contact": "test.user@testcompany.com",
+ "PurchaseOrder": "1234",
+ "CostCenter": "7890",
+ "ServiceName": "DeploymentValidation",
+ "Role": "DeploymentValidation"
+ }
+}
+```
+
+
+
+
+
+Bicep format
+
+```bicep
+tags: {
+ Environment: 'Non-Prod'
+ Contact: 'test.user@testcompany.com'
+ PurchaseOrder: '1234'
+ CostCenter: '7890'
+ ServiceName: 'DeploymentValidation'
+ Role: 'DeploymentValidation'
+}
+```
+
+
+
+
+## Outputs
+
+| Output Name | Type | Description |
+| :-- | :-- | :-- |
+| `name` | string | The name of the notification channel. |
+| `resourceGroupName` | string | The name of the resource group the notification channel was created in. |
+| `resourceId` | string | The resource ID of the notification channel. |
+
+## Cross-referenced modules
+
+_None_
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
new file mode 100644
index 0000000000..b5e8b75154
--- /dev/null
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
@@ -0,0 +1,101 @@
+# DevTestLab Labs PolicySets Policies `[Microsoft.DevTestLab/labs/policySets/policies]`
+
+This module deploys DevTestLab Labs PolicySets Policies.
+
+## Navigation
+
+- [DevTestLab Labs PolicySets Policies `[Microsoft.DevTestLab/labs/policySets/policies]`](#devtestlab-labs-policysets-policies-microsoftdevtestlablabspolicysetspolicies)
+ - [Navigation](#navigation)
+ - [Resource Types](#resource-types)
+ - [Parameters](#parameters)
+ - [Parameter Usage: `tags`](#parameter-usage-tags)
+ - [Outputs](#outputs)
+ - [Cross-referenced modules](#cross-referenced-modules)
+
+## Resource Types
+
+| Resource Type | API Version |
+| :-- | :-- |
+| `Microsoft.DevTestLab/labs/policysets/policies` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/policysets/policies) |
+
+## Parameters
+
+**Required parameters**
+
+| Parameter Name | Type | Allowed Values | Description |
+| :-- | :-- | :-- | :-- |
+| `evaluatorType` | string | `[AllowedValuesPolicy, MaxValuePolicy]` | The evaluator type of the policy (i.e. AllowedValuesPolicy, MaxValuePolicy). |
+| `factName` | string | `[EnvironmentTemplate, GalleryImage, LabPremiumVmCount, LabTargetCost, LabVmCount, LabVmSize, ScheduleEditPermission, UserOwnedLabPremiumVmCount, UserOwnedLabVmCount, UserOwnedLabVmCountInSubnet]` | The fact name of the policy. |
+| `name` | string | | The name of the policy. |
+| `threshold` | string | | The threshold of the policy (i.e. a number for MaxValuePolicy, and a JSON array of values for AllowedValuesPolicy). |
+
+**Conditional parameters**
+
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+| `labName` | string | The name of the parent lab. Required if the template is used in a standalone deployment. |
+
+**Optional parameters**
+
+| Parameter Name | Type | Default Value | Allowed Values | Description |
+| :-- | :-- | :-- | :-- | :-- |
+| `description` | string | `''` | | The description of the policy. |
+| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
+| `factData` | string | `''` | | The fact data of the policy. |
+| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
+| `policySetName` | string | `'default'` | | The name of the parent policy set. |
+| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | The status of the policy. Default is "Enabled". |
+| `tags` | object | `{object}` | | Tags of the resource. |
+
+### Parameter Usage: `tags`
+
+Tag names and tag values can be provided as needed. A tag can be left without a value.
+
+
+
+Parameter JSON format
+
+```json
+"tags": {
+ "value": {
+ "Environment": "Non-Prod",
+ "Contact": "test.user@testcompany.com",
+ "PurchaseOrder": "1234",
+ "CostCenter": "7890",
+ "ServiceName": "DeploymentValidation",
+ "Role": "DeploymentValidation"
+ }
+}
+```
+
+
+
+
+
+Bicep format
+
+```bicep
+tags: {
+ Environment: 'Non-Prod'
+ Contact: 'test.user@testcompany.com'
+ PurchaseOrder: '1234'
+ CostCenter: '7890'
+ ServiceName: 'DeploymentValidation'
+ Role: 'DeploymentValidation'
+}
+```
+
+
+
+
+## Outputs
+
+| Output Name | Type | Description |
+| :-- | :-- | :-- |
+| `name` | string | The name of the policy. |
+| `resourceGroupName` | string | The name of the resource group the policy was created in. |
+| `resourceId` | string | The resource ID of the policy. |
+
+## Cross-referenced modules
+
+_None_
diff --git a/modules/Microsoft.DevTestLab/labs/readme.md b/modules/Microsoft.DevTestLab/labs/readme.md
new file mode 100644
index 0000000000..37fa50f768
--- /dev/null
+++ b/modules/Microsoft.DevTestLab/labs/readme.md
@@ -0,0 +1,771 @@
+# DevTestLab Labs `[Microsoft.DevTestLab/labs]`
+
+This module deploys DevTestLab Labs.
+
+## Navigation
+
+- [DevTestLab Labs `[Microsoft.DevTestLab/labs]`](#devtestlab-labs-microsoftdevtestlablabs)
+ - [Navigation](#navigation)
+ - [Resource Types](#resource-types)
+ - [Parameters](#parameters)
+ - [Parameter Usage: `roleAssignments`](#parameter-usage-roleassignments)
+ - [Parameter Usage: `tags`](#parameter-usage-tags)
+ - [Parameter Usage: `userAssignedIdentities`](#parameter-usage-userassignedidentities)
+ - [Outputs](#outputs)
+ - [Cross-referenced modules](#cross-referenced-modules)
+ - [Deployment examples](#deployment-examples)
+
+## Resource Types
+
+| Resource Type | API Version |
+| :-- | :-- |
+| `Microsoft.Authorization/locks` | [2020-05-01](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2020-05-01/locks) |
+| `Microsoft.Authorization/roleAssignments` | [2022-04-01](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2022-04-01/roleAssignments) |
+| `Microsoft.DevTestLab/labs` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs) |
+| `Microsoft.DevTestLab/labs/artifactsources` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/artifactsources) |
+| `Microsoft.DevTestLab/labs/notificationchannels` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/notificationchannels) |
+| `Microsoft.DevTestLab/labs/policysets/policies` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/policysets/policies) |
+| `Microsoft.DevTestLab/labs/schedules` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/schedules) |
+| `Microsoft.DevTestLab/labs/virtualnetworks` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/virtualnetworks) |
+
+## Parameters
+
+**Required parameters**
+
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+| `name` | string | The name of the lab. |
+
+**Conditional parameters**
+
+| Parameter Name | Type | Default Value | Description |
+| :-- | :-- | :-- | :-- |
+| `encryptionDiskEncryptionSetId` | string | `''` | The Disk Encryption Set Resource ID used to encrypt OS and data disks created as part of the the lab. Required if encryptionType is set to "EncryptionAtRestWithCustomerKey". |
+| `notificationChannels` | _[notificationChannels](notificationChannels/readme.md)_ array | `[]` | Notification Channels to create for the lab. Required if the schedules property "notificationSettingsStatus" is set to "Enabled. |
+
+**Optional parameters**
+
+| Parameter Name | Type | Default Value | Allowed Values | Description |
+| :-- | :-- | :-- | :-- | :-- |
+| `announcement` | object | `{object}` | | The properties of any lab announcement associated with this lab. |
+| `artifactSources` | _[artifactSources](artifactSources/readme.md)_ array | `[]` | | Artifact sources to create for the lab. |
+| `artifactsStorageAccount` | string | `''` | | The resource ID of the storage account used to store artifacts and images by the lab. Also used for defaultStorageAccount, defaultPremiumStorageAccount and premiumDataDiskStorageAccount properties. If left empty, a default storage account will be created by the lab and used. |
+| `browserConnect` | string | `'Disabled'` | `[Disabled, Enabled]` | Enable browser connect on virtual machines if the lab's VNETs have configured Azure Bastion. Default is "Disabled". |
+| `disableAutoUpgradeCseMinorVersion` | bool | `False` | | Disable auto upgrade custom script extension minor version. Default is false. |
+| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
+| `encryptionType` | string | `'EncryptionAtRestWithPlatformKey'` | `[EncryptionAtRestWithCustomerKey, EncryptionAtRestWithPlatformKey]` | Specify how OS and data disks created as part of the lab are encrypted. Default is "EncryptionAtRestWithPlatformKey". |
+| `environmentPermission` | string | `'Reader'` | `[Contributor, Reader]` | The access rights to be granted to the user when provisioning an environment. Default is "Reader". |
+| `extendedProperties` | object | `{object}` | | Extended properties of the lab used for experimental features. |
+| `isolateLabResources` | string | `'Enabled'` | `[Disabled, Enabled]` | Enable lab resources isolation from the public internet. Default is "Enabled". |
+| `labStorageType` | string | `'Premium'` | `[Premium, Standard, StandardSSD]` | Type of storage used by the lab. It can be either Premium or Standard. Default is Premium. |
+| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
+| `lock` | string | `''` | `['', CanNotDelete, ReadOnly]` | Specify the type of lock. |
+| `managementIdentities` | object | `{object}` | | The ID(s) to assign to the virtual machines associated with this lab. |
+| `mandatoryArtifactsResourceIdsLinux` | array | `[]` | | The ordered list of artifact resource IDs that should be applied on all Linux VM creations by default, prior to the artifacts specified by the user. |
+| `mandatoryArtifactsResourceIdsWindows` | array | `[]` | | The ordered list of artifact resource IDs that should be applied on all Windows VM creations by default, prior to the artifacts specified by the user. |
+| `policies` | array | `[]` | | Policies to create for the lab. |
+| `premiumDataDisks` | string | `'Disabled'` | `[Disabled, Enabled]` | The setting to enable usage of premium data disks. When its value is "Enabled", creation of standard or premium data disks is allowed. When its value is "Disabled", only creation of standard data disks is allowed. Default is "Disabled". |
+| `roleAssignments` | array | `[]` | | Array of role assignment objects that contain the 'roleDefinitionIdOrName' and 'principalIds' to define RBAC role assignments on this resource. In the roleDefinitionIdOrName attribute, you can provide either the display name of the role definition, or its fully qualified ID in the following format: '/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11'. |
+| `schedules` | _[schedules](schedules/readme.md)_ array | `[]` | | Schedules to create for the lab. |
+| `support` | object | `{object}` | | The properties of any lab support message associated with this lab. |
+| `tags` | object | `{object}` | | Tags of the resource. |
+| `userAssignedIdentities` | object | `{object}` | | The ID(s) to assign to the resource. |
+| `virtualNetworks` | _[virtualNetworks](virtualNetworks/readme.md)_ array | `[]` | | Virtual networks to create for the lab. |
+| `vmCreationResourceGroupId` | string | `[resourceGroup().id]` | | Resource Group allocation for virtual machines. If left empty, virtual machines will be deployed in their own Resource Groups. Default is the same Resource Group for DevTest Lab. |
+
+### Parameter Usage: `roleAssignments`
+
+Create a role assignment for the given resource. If you want to assign a service principal / managed identity that is created in the same deployment, make sure to also specify the `'principalType'` parameter and set it to `'ServicePrincipal'`. This will ensure the role assignment waits for the principal's propagation in Azure.
+
+
+
+Parameter JSON format
+
+```json
+"roleAssignments": {
+ "value": [
+ {
+ "roleDefinitionIdOrName": "Reader",
+ "description": "Reader Role Assignment",
+ "principalIds": [
+ "12345678-1234-1234-1234-123456789012", // object 1
+ "78945612-1234-1234-1234-123456789012" // object 2
+ ]
+ },
+ {
+ "roleDefinitionIdOrName": "/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11",
+ "principalIds": [
+ "12345678-1234-1234-1234-123456789012" // object 1
+ ],
+ "principalType": "ServicePrincipal"
+ }
+ ]
+}
+```
+
+
+
+
+
+Bicep format
+
+```bicep
+roleAssignments: [
+ {
+ roleDefinitionIdOrName: 'Reader'
+ description: 'Reader Role Assignment'
+ principalIds: [
+ '12345678-1234-1234-1234-123456789012' // object 1
+ '78945612-1234-1234-1234-123456789012' // object 2
+ ]
+ }
+ {
+ roleDefinitionIdOrName: '/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11'
+ principalIds: [
+ '12345678-1234-1234-1234-123456789012' // object 1
+ ]
+ principalType: 'ServicePrincipal'
+ }
+]
+```
+
+
+
+
+### Parameter Usage: `tags`
+
+Tag names and tag values can be provided as needed. A tag can be left without a value.
+
+
+
+Parameter JSON format
+
+```json
+"tags": {
+ "value": {
+ "Environment": "Non-Prod",
+ "Contact": "test.user@testcompany.com",
+ "PurchaseOrder": "1234",
+ "CostCenter": "7890",
+ "ServiceName": "DeploymentValidation",
+ "Role": "DeploymentValidation"
+ }
+}
+```
+
+
+
+
+
+Bicep format
+
+```bicep
+tags: {
+ Environment: 'Non-Prod'
+ Contact: 'test.user@testcompany.com'
+ PurchaseOrder: '1234'
+ CostCenter: '7890'
+ ServiceName: 'DeploymentValidation'
+ Role: 'DeploymentValidation'
+}
+```
+
+
+
+
+### Parameter Usage: `userAssignedIdentities`
+
+You can specify multiple user assigned identities to a resource by providing additional resource IDs using the following format:
+
+
+
+Parameter JSON format
+
+```json
+"userAssignedIdentities": {
+ "value": {
+ "/subscriptions/<>/resourcegroups/validation-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adp-sxx-az-msi-x-001": {},
+ "/subscriptions/<>/resourcegroups/validation-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adp-sxx-az-msi-x-002": {}
+ }
+}
+```
+
+
+
+
+
+Bicep format
+
+```bicep
+userAssignedIdentities: {
+ '/subscriptions/<>/resourcegroups/validation-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adp-sxx-az-msi-x-001': {}
+ '/subscriptions/<>/resourcegroups/validation-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adp-sxx-az-msi-x-002': {}
+}
+```
+
+
+
+
+## Outputs
+
+| Output Name | Type | Description |
+| :-- | :-- | :-- |
+| `location` | string | The location the resource was deployed into. |
+| `name` | string | The name of the lab. |
+| `resourceGroupName` | string | The resource group the lab was deployed into. |
+| `resourceId` | string | The resource ID of the lab. |
+| `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. |
+| `uniqueIdentifier` | string | The unique identifier for the lab. Used to track tags that the lab applies to each resource that it creates. |
+
+## Cross-referenced modules
+
+_None_
+
+## Deployment examples
+
+The following module usage examples are retrieved from the content of the files hosted in the module's `.test` folder.
+ >**Note**: The name of each example is based on the name of the file from which it is taken.
+
+ >**Note**: Each example lists all the required parameters first, followed by the rest - each in alphabetical order.
+
+
Example 1: Common
+
+
+
+via Bicep module
+
+```bicep
+module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
+ name: '${uniqueString(deployment().name)}-test-dtlcom'
+ params: {
+ // Required parameters
+ name: '<>dtlcom001'
+ // Non-required parameters
+ announcement: {
+ enabled: 'Enabled'
+ expirationDate: '2025-12-30T13:00:00Z'
+ markdown: 'DevTest Lab announcement text.
New line. It also supports Markdown'
+ title: 'DevTest announcement title'
+ }
+ artifactSources: [
+ {
+ branchRef: 'master'
+ displayName: 'Public Artifact Repo'
+ folderPath: '/Artifacts'
+ name: 'Public Repo'
+ sourceType: 'GitHub'
+ status: 'Disabled'
+ uri: 'https://github.com/Azure/azure-devtestlab.git'
+ }
+ {
+ armTemplateFolderPath: '/Environments'
+ branchRef: 'master'
+ displayName: 'Public Environment Repo'
+ name: 'Public Environment Repo'
+ sourceType: 'GitHub'
+ status: 'Disabled'
+ uri: 'https://github.com/Azure/azure-devtestlab.git'
+ }
+ ]
+ artifactsStorageAccount: ''
+ browserConnect: 'Enabled'
+ disableAutoUpgradeCseMinorVersion: true
+ enableDefaultTelemetry: ''
+ encryptionDiskEncryptionSetId: ''
+ encryptionType: 'EncryptionAtRestWithCustomerKey'
+ environmentPermission: 'Contributor'
+ extendedProperties: {
+ RdpConnectionType: '7'
+ }
+ isolateLabResources: 'Enabled'
+ labStorageType: 'Premium'
+ location: ''
+ lock: 'CanNotDelete'
+ managementIdentities: {
+ '': {}
+ }
+ notificationChannels: [
+ {
+ description: 'Integration configured for auto-shutdown'
+ emailRecipient: 'mail@contosodtlmail.com'
+ events: [
+ {
+ eventName: 'AutoShutdown'
+ }
+ ]
+ name: 'AutoShutdown'
+ notificationLocale: 'en'
+ webhookUrl: 'https://webhook.contosotest.com'
+ }
+ ]
+ policies: [
+ {
+ evaluatorType: 'MaxValuePolicy'
+ factData: ''
+ factName: 'UserOwnedLabVmCountInSubnet'
+ name: ''
+ threshold: '1'
+ }
+ {
+ evaluatorType: 'MaxValuePolicy'
+ factName: 'UserOwnedLabVmCount'
+ name: 'MaxVmsAllowedPerUser'
+ threshold: '2'
+ }
+ {
+ evaluatorType: 'MaxValuePolicy'
+ factName: 'UserOwnedLabPremiumVmCount'
+ name: 'MaxPremiumVmsAllowedPerUser'
+ status: 'Disabled'
+ threshold: '1'
+ }
+ {
+ evaluatorType: 'MaxValuePolicy'
+ factName: 'LabVmCount'
+ name: 'MaxVmsAllowedPerLab'
+ threshold: '3'
+ }
+ {
+ evaluatorType: 'MaxValuePolicy'
+ factName: 'LabPremiumVmCount'
+ name: 'MaxPremiumVmsAllowedPerLab'
+ threshold: '2'
+ }
+ {
+ evaluatorType: 'AllowedValuesPolicy'
+ factData: ''
+ factName: 'LabVmSize'
+ name: 'AllowedVmSizesInLab'
+ status: 'Enabled'
+ threshold: ''
+ }
+ {
+ evaluatorType: 'AllowedValuesPolicy'
+ factName: 'ScheduleEditPermission'
+ name: 'ScheduleEditPermission'
+ threshold: ''
+ }
+ {
+ evaluatorType: 'AllowedValuesPolicy'
+ factName: 'GalleryImage'
+ name: 'GalleryImage'
+ threshold: ''
+ }
+ {
+ description: 'Public Environment Policy'
+ evaluatorType: 'AllowedValuesPolicy'
+ factName: 'EnvironmentTemplate'
+ name: 'EnvironmentTemplate'
+ threshold: ''
+ }
+ ]
+ premiumDataDisks: 'Enabled'
+ roleAssignments: [
+ {
+ principalIds: [
+ ''
+ ]
+ principalType: 'ServicePrincipal'
+ roleDefinitionIdOrName: 'Reader'
+ }
+ ]
+ schedules: [
+ {
+ dailyRecurrence: {
+ time: '0000'
+ }
+ name: 'LabVmsShutdown'
+ notificationSettingsStatus: 'Enabled'
+ notificationSettingsTimeInMinutes: 30
+ status: 'Enabled'
+ taskType: 'LabVmsShutdownTask'
+ timeZoneId: 'AUS Eastern Standard Time'
+ }
+ {
+ name: 'LabVmAutoStart'
+ status: 'Enabled'
+ taskType: 'LabVmsStartupTask'
+ timeZoneId: 'AUS Eastern Standard Time'
+ weeklyRecurrence: {
+ time: '0700'
+ weekdays: [
+ 'Friday'
+ 'Monday'
+ 'Thursday'
+ 'Tuesday'
+ 'Wednesday'
+ ]
+ }
+ }
+ ]
+ support: {
+ enabled: 'Enabled'
+ markdown: 'DevTest Lab support text.
New line. It also supports Markdown'
+ }
+ tags: {
+ labName: '<>dtlcom001'
+ resourceType: 'DevTest Lab'
+ }
+ userAssignedIdentities: {
+ '': {}
+ }
+ virtualNetworks: [
+ {
+ allowedSubnets: [
+ {
+ allowPublicIp: 'Allow'
+ labSubnetName: ''
+ resourceId: ''
+ }
+ ]
+ description: 'lab virtual network description'
+ externalProviderResourceId: ''
+ name: ''
+ subnetOverrides: [
+ {
+ labSubnetName: ''
+ resourceId: ''
+ sharedPublicIpAddressConfiguration: {
+ allowedPorts: [
+ {
+ backendPort: 3389
+ transportProtocol: 'Tcp'
+ }
+ {
+ backendPort: 22
+ transportProtocol: 'Tcp'
+ }
+ ]
+ }
+ useInVmCreationPermission: 'Allow'
+ usePublicIpAddressPermission: 'Allow'
+ }
+ ]
+ }
+ ]
+ vmCreationResourceGroupId: ''
+ }
+}
+```
+
+
+
+
+
+
+via JSON Parameter file
+
+```json
+{
+ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ // Required parameters
+ "name": {
+ "value": "<>dtlcom001"
+ },
+ // Non-required parameters
+ "announcement": {
+ "value": {
+ "enabled": "Enabled",
+ "expirationDate": "2025-12-30T13:00:00Z",
+ "markdown": "DevTest Lab announcement text.
New line. It also supports Markdown",
+ "title": "DevTest announcement title"
+ }
+ },
+ "artifactSources": {
+ "value": [
+ {
+ "branchRef": "master",
+ "displayName": "Public Artifact Repo",
+ "folderPath": "/Artifacts",
+ "name": "Public Repo",
+ "sourceType": "GitHub",
+ "status": "Disabled",
+ "uri": "https://github.com/Azure/azure-devtestlab.git"
+ },
+ {
+ "armTemplateFolderPath": "/Environments",
+ "branchRef": "master",
+ "displayName": "Public Environment Repo",
+ "name": "Public Environment Repo",
+ "sourceType": "GitHub",
+ "status": "Disabled",
+ "uri": "https://github.com/Azure/azure-devtestlab.git"
+ }
+ ]
+ },
+ "artifactsStorageAccount": {
+ "value": ""
+ },
+ "browserConnect": {
+ "value": "Enabled"
+ },
+ "disableAutoUpgradeCseMinorVersion": {
+ "value": true
+ },
+ "enableDefaultTelemetry": {
+ "value": ""
+ },
+ "encryptionDiskEncryptionSetId": {
+ "value": ""
+ },
+ "encryptionType": {
+ "value": "EncryptionAtRestWithCustomerKey"
+ },
+ "environmentPermission": {
+ "value": "Contributor"
+ },
+ "extendedProperties": {
+ "value": {
+ "RdpConnectionType": "7"
+ }
+ },
+ "isolateLabResources": {
+ "value": "Enabled"
+ },
+ "labStorageType": {
+ "value": "Premium"
+ },
+ "location": {
+ "value": ""
+ },
+ "lock": {
+ "value": "CanNotDelete"
+ },
+ "managementIdentities": {
+ "value": {
+ "": {}
+ }
+ },
+ "notificationChannels": {
+ "value": [
+ {
+ "description": "Integration configured for auto-shutdown",
+ "emailRecipient": "mail@contosodtlmail.com",
+ "events": [
+ {
+ "eventName": "AutoShutdown"
+ }
+ ],
+ "name": "AutoShutdown",
+ "notificationLocale": "en",
+ "webhookUrl": "https://webhook.contosotest.com"
+ }
+ ]
+ },
+ "policies": {
+ "value": [
+ {
+ "evaluatorType": "MaxValuePolicy",
+ "factData": "",
+ "factName": "UserOwnedLabVmCountInSubnet",
+ "name": "",
+ "threshold": "1"
+ },
+ {
+ "evaluatorType": "MaxValuePolicy",
+ "factName": "UserOwnedLabVmCount",
+ "name": "MaxVmsAllowedPerUser",
+ "threshold": "2"
+ },
+ {
+ "evaluatorType": "MaxValuePolicy",
+ "factName": "UserOwnedLabPremiumVmCount",
+ "name": "MaxPremiumVmsAllowedPerUser",
+ "status": "Disabled",
+ "threshold": "1"
+ },
+ {
+ "evaluatorType": "MaxValuePolicy",
+ "factName": "LabVmCount",
+ "name": "MaxVmsAllowedPerLab",
+ "threshold": "3"
+ },
+ {
+ "evaluatorType": "MaxValuePolicy",
+ "factName": "LabPremiumVmCount",
+ "name": "MaxPremiumVmsAllowedPerLab",
+ "threshold": "2"
+ },
+ {
+ "evaluatorType": "AllowedValuesPolicy",
+ "factData": "",
+ "factName": "LabVmSize",
+ "name": "AllowedVmSizesInLab",
+ "status": "Enabled",
+ "threshold": ""
+ },
+ {
+ "evaluatorType": "AllowedValuesPolicy",
+ "factName": "ScheduleEditPermission",
+ "name": "ScheduleEditPermission",
+ "threshold": ""
+ },
+ {
+ "evaluatorType": "AllowedValuesPolicy",
+ "factName": "GalleryImage",
+ "name": "GalleryImage",
+ "threshold": ""
+ },
+ {
+ "description": "Public Environment Policy",
+ "evaluatorType": "AllowedValuesPolicy",
+ "factName": "EnvironmentTemplate",
+ "name": "EnvironmentTemplate",
+ "threshold": ""
+ }
+ ]
+ },
+ "premiumDataDisks": {
+ "value": "Enabled"
+ },
+ "roleAssignments": {
+ "value": [
+ {
+ "principalIds": [
+ ""
+ ],
+ "principalType": "ServicePrincipal",
+ "roleDefinitionIdOrName": "Reader"
+ }
+ ]
+ },
+ "schedules": {
+ "value": [
+ {
+ "dailyRecurrence": {
+ "time": "0000"
+ },
+ "name": "LabVmsShutdown",
+ "notificationSettingsStatus": "Enabled",
+ "notificationSettingsTimeInMinutes": 30,
+ "status": "Enabled",
+ "taskType": "LabVmsShutdownTask",
+ "timeZoneId": "AUS Eastern Standard Time"
+ },
+ {
+ "name": "LabVmAutoStart",
+ "status": "Enabled",
+ "taskType": "LabVmsStartupTask",
+ "timeZoneId": "AUS Eastern Standard Time",
+ "weeklyRecurrence": {
+ "time": "0700",
+ "weekdays": [
+ "Friday",
+ "Monday",
+ "Thursday",
+ "Tuesday",
+ "Wednesday"
+ ]
+ }
+ }
+ ]
+ },
+ "support": {
+ "value": {
+ "enabled": "Enabled",
+ "markdown": "DevTest Lab support text.
New line. It also supports Markdown"
+ }
+ },
+ "tags": {
+ "value": {
+ "labName": "<>dtlcom001",
+ "resourceType": "DevTest Lab"
+ }
+ },
+ "userAssignedIdentities": {
+ "value": {
+ "": {}
+ }
+ },
+ "virtualNetworks": {
+ "value": [
+ {
+ "allowedSubnets": [
+ {
+ "allowPublicIp": "Allow",
+ "labSubnetName": "",
+ "resourceId": ""
+ }
+ ],
+ "description": "lab virtual network description",
+ "externalProviderResourceId": "",
+ "name": "",
+ "subnetOverrides": [
+ {
+ "labSubnetName": "",
+ "resourceId": "",
+ "sharedPublicIpAddressConfiguration": {
+ "allowedPorts": [
+ {
+ "backendPort": 3389,
+ "transportProtocol": "Tcp"
+ },
+ {
+ "backendPort": 22,
+ "transportProtocol": "Tcp"
+ }
+ ]
+ },
+ "useInVmCreationPermission": "Allow",
+ "usePublicIpAddressPermission": "Allow"
+ }
+ ]
+ }
+ ]
+ },
+ "vmCreationResourceGroupId": {
+ "value": ""
+ }
+ }
+}
+```
+
+
+
+
+
Example 2: Min
+
+
+
+via Bicep module
+
+```bicep
+module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
+ name: '${uniqueString(deployment().name)}-test-dtlmin'
+ params: {
+ // Required parameters
+ name: '<>dtlmin001'
+ // Non-required parameters
+ enableDefaultTelemetry: ''
+ }
+}
+```
+
+
+
+
+
+
+via JSON Parameter file
+
+```json
+{
+ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ // Required parameters
+ "name": {
+ "value": "<>dtlmin001"
+ },
+ // Non-required parameters
+ "enableDefaultTelemetry": {
+ "value": ""
+ }
+ }
+}
+```
+
+
+
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/readme.md b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
new file mode 100644
index 0000000000..c9d282d3c2
--- /dev/null
+++ b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
@@ -0,0 +1,103 @@
+# DevTestLab Labs Schedules `[Microsoft.DevTestLab/labs/schedules]`
+
+This module deploys DevTestLab Labs Schedules.
+
+## Navigation
+
+- [DevTestLab Labs Schedules `[Microsoft.DevTestLab/labs/schedules]`](#devtestlab-labs-schedules-microsoftdevtestlablabsschedules)
+ - [Navigation](#navigation)
+ - [Resource Types](#resource-types)
+ - [Parameters](#parameters)
+ - [Parameter Usage: `tags`](#parameter-usage-tags)
+ - [Outputs](#outputs)
+ - [Cross-referenced modules](#cross-referenced-modules)
+
+## Resource Types
+
+| Resource Type | API Version |
+| :-- | :-- |
+| `Microsoft.DevTestLab/labs/schedules` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/schedules) |
+
+## Parameters
+
+**Required parameters**
+
+| Parameter Name | Type | Allowed Values | Description |
+| :-- | :-- | :-- | :-- |
+| `name` | string | `[LabVmAutoStart, LabVmsShutdown]` | The name of the schedule. |
+| `taskType` | string | `[LabVmsShutdownTask, LabVmsStartupTask]` | The task type of the schedule (e.g. LabVmsShutdownTask, LabVmsStartupTask). |
+
+**Conditional parameters**
+
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+| `labName` | string | The name of the parent lab. Required if the template is used in a standalone deployment. |
+
+**Optional parameters**
+
+| Parameter Name | Type | Default Value | Allowed Values | Description |
+| :-- | :-- | :-- | :-- | :-- |
+| `dailyRecurrence` | object | `{object}` | | If the schedule will occur once each day of the week, specify the daily recurrence. |
+| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
+| `hourlyRecurrence` | object | `{object}` | | If the schedule will occur multiple times a day, specify the hourly recurrence. |
+| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
+| `notificationSettingsStatus` | string | `'Disabled'` | `[Disabled, Enabled]` | If notifications are enabled for this schedule (i.e. Enabled, Disabled). Default is "Disabled". |
+| `notificationSettingsTimeInMinutes` | int | `30` | | Time in minutes before event at which notification will be sent. Optional if "notificationSettingsStatus" is set to "Enabled". Default is 30 minutes. |
+| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | The status of the schedule (i.e. Enabled, Disabled). Default is "Enabled". |
+| `tags` | object | `{object}` | | Tags of the resource. |
+| `targetResourceId` | string | `''` | | The resource ID to which the schedule belongs. |
+| `timeZoneId` | string | `'Pacific Standard time'` | | The time zone ID (e.g. Pacific Standard time). |
+| `weeklyRecurrence` | object | `{object}` | | If the schedule will occur only some days of the week, specify the weekly recurrence. |
+
+### Parameter Usage: `tags`
+
+Tag names and tag values can be provided as needed. A tag can be left without a value.
+
+
+
+Parameter JSON format
+
+```json
+"tags": {
+ "value": {
+ "Environment": "Non-Prod",
+ "Contact": "test.user@testcompany.com",
+ "PurchaseOrder": "1234",
+ "CostCenter": "7890",
+ "ServiceName": "DeploymentValidation",
+ "Role": "DeploymentValidation"
+ }
+}
+```
+
+
+
+
+
+Bicep format
+
+```bicep
+tags: {
+ Environment: 'Non-Prod'
+ Contact: 'test.user@testcompany.com'
+ PurchaseOrder: '1234'
+ CostCenter: '7890'
+ ServiceName: 'DeploymentValidation'
+ Role: 'DeploymentValidation'
+}
+```
+
+
+
+
+## Outputs
+
+| Output Name | Type | Description |
+| :-- | :-- | :-- |
+| `name` | string | The name of the schedule. |
+| `resourceGroupName` | string | The name of the resource group the schedule was created in. |
+| `resourceId` | string | The resource ID of the schedule. |
+
+## Cross-referenced modules
+
+_None_
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
new file mode 100644
index 0000000000..b031be7155
--- /dev/null
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
@@ -0,0 +1,98 @@
+# DevTestLab Labs VirtualNetworks `[Microsoft.DevTestLab/labs/virtualNetworks]`
+
+This module deploys DevTestLab Labs VirtualNetworks.
+
+## Navigation
+
+- [DevTestLab Labs VirtualNetworks `[Microsoft.DevTestLab/labs/virtualNetworks]`](#devtestlab-labs-virtualnetworks-microsoftdevtestlablabsvirtualnetworks)
+ - [Navigation](#navigation)
+ - [Resource Types](#resource-types)
+ - [Parameters](#parameters)
+ - [Parameter Usage: `tags`](#parameter-usage-tags)
+ - [Outputs](#outputs)
+ - [Cross-referenced modules](#cross-referenced-modules)
+
+## Resource Types
+
+| Resource Type | API Version |
+| :-- | :-- |
+| `Microsoft.DevTestLab/labs/virtualnetworks` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/virtualnetworks) |
+
+## Parameters
+
+**Required parameters**
+
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+| `externalProviderResourceId` | string | The resource ID of the virtual network. |
+| `name` | string | The name of the virtual network. |
+
+**Conditional parameters**
+
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+| `labName` | string | The name of the parent lab. Required if the template is used in a standalone deployment. |
+
+**Optional parameters**
+
+| Parameter Name | Type | Default Value | Description |
+| :-- | :-- | :-- | :-- |
+| `allowedSubnets` | array | `[]` | The allowed subnets of the virtual network. |
+| `description` | string | `''` | The description of the virtual network. |
+| `enableDefaultTelemetry` | bool | `True` | Enable telemetry via a Globally Unique Identifier (GUID). |
+| `location` | string | `[resourceGroup().location]` | Location for all Resources. |
+| `subnetOverrides` | array | `[]` | The subnet overrides of the virtual network. |
+| `tags` | object | `{object}` | Tags of the resource. |
+
+### Parameter Usage: `tags`
+
+Tag names and tag values can be provided as needed. A tag can be left without a value.
+
+
+
+Parameter JSON format
+
+```json
+"tags": {
+ "value": {
+ "Environment": "Non-Prod",
+ "Contact": "test.user@testcompany.com",
+ "PurchaseOrder": "1234",
+ "CostCenter": "7890",
+ "ServiceName": "DeploymentValidation",
+ "Role": "DeploymentValidation"
+ }
+}
+```
+
+
+
+
+
+Bicep format
+
+```bicep
+tags: {
+ Environment: 'Non-Prod'
+ Contact: 'test.user@testcompany.com'
+ PurchaseOrder: '1234'
+ CostCenter: '7890'
+ ServiceName: 'DeploymentValidation'
+ Role: 'DeploymentValidation'
+}
+```
+
+
+
+
+## Outputs
+
+| Output Name | Type | Description |
+| :-- | :-- | :-- |
+| `name` | string | The name of the lab virtual network. |
+| `resourceGroupName` | string | The name of the resource group the lab virtual network was created in. |
+| `resourceId` | string | The resource ID of the lab virtual network. |
+
+## Cross-referenced modules
+
+_None_
From 792d180c92cb8e0300d8a78e66e4f13aa9ebd876 Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Tue, 27 Dec 2022 12:36:11 +1100
Subject: [PATCH 10/18] updated readme based on script
---
.../labs/artifactSources/readme.md | 17 ++++++++++-------
.../labs/notificationChannels/readme.md | 12 +++++-------
.../labs/policySets/policies/readme.md | 12 +++++-------
modules/Microsoft.DevTestLab/labs/readme.md | 16 ++++++----------
.../labs/schedules/readme.md | 12 +++++-------
.../labs/virtualNetworks/readme.md | 12 +++++-------
6 files changed, 36 insertions(+), 45 deletions(-)
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
index 0799275964..c03edf6364 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
@@ -4,13 +4,10 @@ This module deploys DevTestLab Labs ArtifactSources.
## Navigation
-- [DevTestLab Labs ArtifactSources `[Microsoft.DevTestLab/labs/artifactSources]`](#devtestlab-labs-artifactsources-microsoftdevtestlablabsartifactsources)
- - [Navigation](#navigation)
- - [Resource Types](#resource-types)
- - [Parameters](#parameters)
- - [Parameter Usage: `tags`](#parameter-usage-tags)
- - [Outputs](#outputs)
- - [Cross-referenced modules](#cross-referenced-modules)
+- [Resource Types](#Resource-Types)
+- [Parameters](#Parameters)
+- [Outputs](#Outputs)
+- [Cross-referenced modules](#Cross-referenced-modules)
## Resource Types
@@ -47,6 +44,12 @@ This module deploys DevTestLab Labs ArtifactSources.
| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | Indicates if the artifact source is enabled (values: Enabled, Disabled). Default is "Enabled". |
| `tags` | object | `{object}` | | Tags of the resource. |
+**The artifact source's type parameters**
+
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+
+
### Parameter Usage: `tags`
Tag names and tag values can be provided as needed. A tag can be left without a value.
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
index ccadcc21b1..59af809aed 100644
--- a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
@@ -4,13 +4,10 @@ This module deploys DevTestLab Labs NotificationChannels.
## Navigation
-- [DevTestLab Labs NotificationChannels `[Microsoft.DevTestLab/labs/notificationChannels]`](#devtestlab-labs-notificationchannels-microsoftdevtestlablabsnotificationchannels)
- - [Navigation](#navigation)
- - [Resource Types](#resource-types)
- - [Parameters](#parameters)
- - [Parameter Usage: `tags`](#parameter-usage-tags)
- - [Outputs](#outputs)
- - [Cross-referenced modules](#cross-referenced-modules)
+- [Resource Types](#Resource-Types)
+- [Parameters](#Parameters)
+- [Outputs](#Outputs)
+- [Cross-referenced modules](#Cross-referenced-modules)
## Resource Types
@@ -45,6 +42,7 @@ This module deploys DevTestLab Labs NotificationChannels.
| `notificationLocale` | string | `'en'` | The locale to use when sending a notification (fallback for unsupported languages is EN). Default is "en". |
| `tags` | object | `{object}` | Tags of the resource. |
+
### Parameter Usage: `tags`
Tag names and tag values can be provided as needed. A tag can be left without a value.
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
index b5e8b75154..99b631472d 100644
--- a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
@@ -4,13 +4,10 @@ This module deploys DevTestLab Labs PolicySets Policies.
## Navigation
-- [DevTestLab Labs PolicySets Policies `[Microsoft.DevTestLab/labs/policySets/policies]`](#devtestlab-labs-policysets-policies-microsoftdevtestlablabspolicysetspolicies)
- - [Navigation](#navigation)
- - [Resource Types](#resource-types)
- - [Parameters](#parameters)
- - [Parameter Usage: `tags`](#parameter-usage-tags)
- - [Outputs](#outputs)
- - [Cross-referenced modules](#cross-referenced-modules)
+- [Resource Types](#Resource-Types)
+- [Parameters](#Parameters)
+- [Outputs](#Outputs)
+- [Cross-referenced modules](#Cross-referenced-modules)
## Resource Types
@@ -47,6 +44,7 @@ This module deploys DevTestLab Labs PolicySets Policies.
| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | The status of the policy. Default is "Enabled". |
| `tags` | object | `{object}` | | Tags of the resource. |
+
### Parameter Usage: `tags`
Tag names and tag values can be provided as needed. A tag can be left without a value.
diff --git a/modules/Microsoft.DevTestLab/labs/readme.md b/modules/Microsoft.DevTestLab/labs/readme.md
index 37fa50f768..77806ab2d0 100644
--- a/modules/Microsoft.DevTestLab/labs/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/readme.md
@@ -4,16 +4,11 @@ This module deploys DevTestLab Labs.
## Navigation
-- [DevTestLab Labs `[Microsoft.DevTestLab/labs]`](#devtestlab-labs-microsoftdevtestlablabs)
- - [Navigation](#navigation)
- - [Resource Types](#resource-types)
- - [Parameters](#parameters)
- - [Parameter Usage: `roleAssignments`](#parameter-usage-roleassignments)
- - [Parameter Usage: `tags`](#parameter-usage-tags)
- - [Parameter Usage: `userAssignedIdentities`](#parameter-usage-userassignedidentities)
- - [Outputs](#outputs)
- - [Cross-referenced modules](#cross-referenced-modules)
- - [Deployment examples](#deployment-examples)
+- [Resource Types](#Resource-Types)
+- [Parameters](#Parameters)
+- [Outputs](#Outputs)
+- [Cross-referenced modules](#Cross-referenced-modules)
+- [Deployment examples](#Deployment-examples)
## Resource Types
@@ -73,6 +68,7 @@ This module deploys DevTestLab Labs.
| `virtualNetworks` | _[virtualNetworks](virtualNetworks/readme.md)_ array | `[]` | | Virtual networks to create for the lab. |
| `vmCreationResourceGroupId` | string | `[resourceGroup().id]` | | Resource Group allocation for virtual machines. If left empty, virtual machines will be deployed in their own Resource Groups. Default is the same Resource Group for DevTest Lab. |
+
### Parameter Usage: `roleAssignments`
Create a role assignment for the given resource. If you want to assign a service principal / managed identity that is created in the same deployment, make sure to also specify the `'principalType'` parameter and set it to `'ServicePrincipal'`. This will ensure the role assignment waits for the principal's propagation in Azure.
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/readme.md b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
index c9d282d3c2..2cf7829261 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
@@ -4,13 +4,10 @@ This module deploys DevTestLab Labs Schedules.
## Navigation
-- [DevTestLab Labs Schedules `[Microsoft.DevTestLab/labs/schedules]`](#devtestlab-labs-schedules-microsoftdevtestlablabsschedules)
- - [Navigation](#navigation)
- - [Resource Types](#resource-types)
- - [Parameters](#parameters)
- - [Parameter Usage: `tags`](#parameter-usage-tags)
- - [Outputs](#outputs)
- - [Cross-referenced modules](#cross-referenced-modules)
+- [Resource Types](#Resource-Types)
+- [Parameters](#Parameters)
+- [Outputs](#Outputs)
+- [Cross-referenced modules](#Cross-referenced-modules)
## Resource Types
@@ -49,6 +46,7 @@ This module deploys DevTestLab Labs Schedules.
| `timeZoneId` | string | `'Pacific Standard time'` | | The time zone ID (e.g. Pacific Standard time). |
| `weeklyRecurrence` | object | `{object}` | | If the schedule will occur only some days of the week, specify the weekly recurrence. |
+
### Parameter Usage: `tags`
Tag names and tag values can be provided as needed. A tag can be left without a value.
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
index b031be7155..0506a898ff 100644
--- a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
@@ -4,13 +4,10 @@ This module deploys DevTestLab Labs VirtualNetworks.
## Navigation
-- [DevTestLab Labs VirtualNetworks `[Microsoft.DevTestLab/labs/virtualNetworks]`](#devtestlab-labs-virtualnetworks-microsoftdevtestlablabsvirtualnetworks)
- - [Navigation](#navigation)
- - [Resource Types](#resource-types)
- - [Parameters](#parameters)
- - [Parameter Usage: `tags`](#parameter-usage-tags)
- - [Outputs](#outputs)
- - [Cross-referenced modules](#cross-referenced-modules)
+- [Resource Types](#Resource-Types)
+- [Parameters](#Parameters)
+- [Outputs](#Outputs)
+- [Cross-referenced modules](#Cross-referenced-modules)
## Resource Types
@@ -44,6 +41,7 @@ This module deploys DevTestLab Labs VirtualNetworks.
| `subnetOverrides` | array | `[]` | The subnet overrides of the virtual network. |
| `tags` | object | `{object}` | Tags of the resource. |
+
### Parameter Usage: `tags`
Tag names and tag values can be provided as needed. A tag can be left without a value.
From 9705566adcc1807989a7abbdede16ab44133baa6 Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Tue, 27 Dec 2022 12:52:04 +1100
Subject: [PATCH 11/18] added pipelines
---
.../modulePipelines/ms.devtestlab.labs.yml | 40 +++++
.github/workflows/ms.devtestlab.labs.yml | 148 ++++++++++++++++++
2 files changed, 188 insertions(+)
create mode 100644 .azuredevops/modulePipelines/ms.devtestlab.labs.yml
create mode 100644 .github/workflows/ms.devtestlab.labs.yml
diff --git a/.azuredevops/modulePipelines/ms.devtestlab.labs.yml b/.azuredevops/modulePipelines/ms.devtestlab.labs.yml
new file mode 100644
index 0000000000..5cf74b1d8f
--- /dev/null
+++ b/.azuredevops/modulePipelines/ms.devtestlab.labs.yml
@@ -0,0 +1,40 @@
+name: 'DevTestLab - Labs'
+
+parameters:
+ - name: removeDeployment
+ displayName: Remove deployed module
+ type: boolean
+ default: true
+ - name: prerelease
+ displayName: Publish prerelease module
+ type: boolean
+ default: false
+
+pr: none
+
+trigger:
+ batch: true
+ branches:
+ include:
+ - main
+ paths:
+ include:
+ - '/.azuredevops/modulePipelines/ms.devtestlab.labs.yml'
+ - '/.azuredevops/pipelineTemplates/*.yml'
+ - '/modules/Microsoft.DevTestLab/labs/*'
+ - '/utilities/pipelines/*'
+ exclude:
+ - '/utilities/pipelines/deploymentRemoval/*'
+ - '/**/*.md'
+
+variables:
+ - template: '../../settings.yml'
+ - group: 'PLATFORM_VARIABLES'
+ - name: modulePath
+ value: '/modules/Microsoft.DevTestLab/labs'
+
+stages:
+ - template: /.azuredevops/pipelineTemplates/stages.module.yml
+ parameters:
+ removeDeployment: '${{ parameters.removeDeployment }}'
+ prerelease: '${{ parameters.prerelease }}'
diff --git a/.github/workflows/ms.devtestlab.labs.yml b/.github/workflows/ms.devtestlab.labs.yml
new file mode 100644
index 0000000000..f87a84b6c0
--- /dev/null
+++ b/.github/workflows/ms.devtestlab.labs.yml
@@ -0,0 +1,148 @@
+name: 'DevTestLab: Labs'
+
+on:
+ workflow_dispatch:
+ inputs:
+ removeDeployment:
+ type: boolean
+ description: 'Remove deployed module'
+ required: false
+ default: true
+ prerelease:
+ type: boolean
+ description: 'Publish prerelease module'
+ required: false
+ default: false
+
+ push:
+ branches:
+ - main
+ paths:
+ - '.github/actions/templates/**'
+ - '.github/workflows/ms.devtestlab.labs.yml'
+ - 'modules/Microsoft.DevTestLab/labs/**'
+ - 'utilities/pipelines/**'
+ - '!utilities/pipelines/deploymentRemoval/**'
+ - '!*/**/readme.md'
+
+env:
+ variablesPath: 'settings.yml'
+ modulePath: 'modules/Microsoft.DevTestLab/labs'
+ workflowPath: '.github/workflows/ms.devtestlab.labs.yml'
+ AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
+ ARM_SUBSCRIPTION_ID: ${{ secrets.ARM_SUBSCRIPTION_ID }}
+ ARM_MGMTGROUP_ID: ${{ secrets.ARM_MGMTGROUP_ID }}
+ ARM_TENANT_ID: '${{ secrets.ARM_TENANT_ID }}'
+ TOKEN_NAMEPREFIX: '${{ secrets.TOKEN_NAMEPREFIX }}'
+
+concurrency:
+ group: ${{ github.workflow }}
+
+jobs:
+ ###########################
+ # Initialize pipeline #
+ ###########################
+ job_initialize_pipeline:
+ runs-on: ubuntu-20.04
+ name: 'Initialize pipeline'
+ steps:
+ - name: 'Checkout'
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: 'Set input parameters to output variables'
+ id: get-workflow-param
+ uses: ./.github/actions/templates/getWorkflowInput
+ with:
+ workflowPath: '${{ env.workflowPath}}'
+ - name: 'Get parameter file paths'
+ id: get-module-test-file-paths
+ uses: ./.github/actions/templates/getModuleTestFiles
+ with:
+ modulePath: '${{ env.modulePath }}'
+ outputs:
+ workflowInput: ${{ steps.get-workflow-param.outputs.workflowInput }}
+ moduleTestFilePaths: ${{ steps.get-module-test-file-paths.outputs.moduleTestFilePaths }}
+
+ #########################
+ # Static validation #
+ #########################
+ job_module_pester_validation:
+ runs-on: ubuntu-20.04
+ name: 'Static validation'
+ steps:
+ - name: 'Checkout'
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: Set environment variables
+ uses: ./.github/actions/templates/setEnvironmentVariables
+ with:
+ variablesPath: ${{ env.variablesPath }}
+ - name: 'Run tests'
+ uses: ./.github/actions/templates/validateModulePester
+ with:
+ modulePath: '${{ env.modulePath }}'
+ moduleTestFilePath: '${{ env.moduleTestFilePath }}'
+
+ #############################
+ # Deployment validation #
+ #############################
+ job_module_deploy_validation:
+ runs-on: ubuntu-20.04
+ name: 'Deployment validation'
+ needs:
+ - job_initialize_pipeline
+ - job_module_pester_validation
+ strategy:
+ fail-fast: false
+ matrix:
+ moduleTestFilePaths: ${{ fromJson(needs.job_initialize_pipeline.outputs.moduleTestFilePaths) }}
+ steps:
+ - name: 'Checkout'
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: Set environment variables
+ uses: ./.github/actions/templates/setEnvironmentVariables
+ with:
+ variablesPath: ${{ env.variablesPath }}
+ - name: 'Using test file [${{ matrix.moduleTestFilePaths }}]'
+ uses: ./.github/actions/templates/validateModuleDeployment
+ with:
+ templateFilePath: '${{ env.modulePath }}/${{ matrix.moduleTestFilePaths }}'
+ location: '${{ env.location }}'
+ subscriptionId: '${{ secrets.ARM_SUBSCRIPTION_ID }}'
+ managementGroupId: '${{ secrets.ARM_MGMTGROUP_ID }}'
+ removeDeployment: '${{ (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).removeDeployment }}'
+
+ ##################
+ # Publishing #
+ ##################
+ job_publish_module:
+ name: 'Publishing'
+ if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || github.event.inputs.prerelease == 'true'
+ runs-on: ubuntu-20.04
+ needs:
+ - job_module_deploy_validation
+ steps:
+ - name: 'Checkout'
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: Set environment variables
+ uses: ./.github/actions/templates/setEnvironmentVariables
+ with:
+ variablesPath: ${{ env.variablesPath }}
+ - name: 'Publishing'
+ uses: ./.github/actions/templates/publishModule
+ with:
+ templateFilePath: '${{ env.modulePath }}/deploy.bicep'
+ templateSpecsRGName: '${{ env.templateSpecsRGName }}'
+ templateSpecsRGLocation: '${{ env.templateSpecsRGLocation }}'
+ templateSpecsDescription: '${{ env.templateSpecsDescription }}'
+ templateSpecsDoPublish: '${{ env.templateSpecsDoPublish }}'
+ bicepRegistryName: '${{ env.bicepRegistryName }}'
+ bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
+ bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
+ bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
From eb1d04ede3c84cd8525aeba54dd2ad5e6ad53060 Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Tue, 27 Dec 2022 13:46:36 +1100
Subject: [PATCH 12/18] Ready for PR
---
.../labs/.bicep/nested_roleAssignments.bicep | 2 +-
.../labs/.test/common/dependencies.bicep | 81 -------------------
.../labs/.test/common/deploy.test.bicep | 14 ----
.../labs/artifactSources/deploy.bicep | 4 +-
.../labs/artifactSources/readme.md | 2 +-
.../Microsoft.DevTestLab/labs/deploy.bicep | 49 +----------
.../labs/notificationChannels/deploy.bicep | 6 +-
.../labs/notificationChannels/readme.md | 2 +-
.../labs/policySets/policies/deploy.bicep | 6 +-
.../labs/policySets/policies/readme.md | 2 +-
modules/Microsoft.DevTestLab/labs/readme.md | 54 +++----------
.../labs/schedules/deploy.bicep | 4 +-
.../labs/schedules/readme.md | 2 +-
.../labs/virtualNetworks/deploy.bicep | 4 +-
.../labs/virtualNetworks/readme.md | 2 +-
15 files changed, 29 insertions(+), 205 deletions(-)
diff --git a/modules/Microsoft.DevTestLab/labs/.bicep/nested_roleAssignments.bicep b/modules/Microsoft.DevTestLab/labs/.bicep/nested_roleAssignments.bicep
index 1753e4fd50..33b6b89a51 100644
--- a/modules/Microsoft.DevTestLab/labs/.bicep/nested_roleAssignments.bicep
+++ b/modules/Microsoft.DevTestLab/labs/.bicep/nested_roleAssignments.bicep
@@ -51,7 +51,7 @@ var builtInRoleNames = {
'Virtual Machine Contributor': subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '9980e02c-c2be-4d73-94e8-173b1dc7cf3c')
}
-resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' existing = {
+resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
name: last(split(resourceId, '/'))
}
diff --git a/modules/Microsoft.DevTestLab/labs/.test/common/dependencies.bicep b/modules/Microsoft.DevTestLab/labs/.test/common/dependencies.bicep
index 8d7f4953a9..d7707525d8 100644
--- a/modules/Microsoft.DevTestLab/labs/.test/common/dependencies.bicep
+++ b/modules/Microsoft.DevTestLab/labs/.test/common/dependencies.bicep
@@ -4,15 +4,6 @@ param location string = resourceGroup().location
@description('Required. The name of the Managed Identity to create.')
param managedIdentityName string
-@description('Required. The name of the Disk Encryption Set to create.')
-param diskEncryptionSetName string
-
-@description('Required. The name of the Key Vault to create.')
-param keyVaultName string
-
-@description('Required. The name of the Storage Account to create.')
-param storageAccountName string
-
@description('Required. The name of the Virtual Network to create.')
param virtualNetworkName string
@@ -21,72 +12,6 @@ resource managedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2018-
location: location
}
-resource keyVault 'Microsoft.KeyVault/vaults@2022-07-01' = {
- name: keyVaultName
- location: location
- properties: {
- sku: {
- family: 'A'
- name: 'standard'
- }
- tenantId: tenant().tenantId
- enablePurgeProtection: true // Required for encrption to work
- softDeleteRetentionInDays: 7
- enabledForTemplateDeployment: true
- enabledForDiskEncryption: true
- enabledForDeployment: true
- enableRbacAuthorization: true
- accessPolicies: []
- }
-
- resource key 'keys@2022-07-01' = {
- name: 'encryptionKey'
- properties: {
- kty: 'RSA'
- }
- }
-}
-
-resource diskEncryptionSet 'Microsoft.Compute/diskEncryptionSets@2021-04-01' = {
- name: diskEncryptionSetName
- location: location
- identity: {
- type: 'SystemAssigned'
- }
- properties: {
- activeKey: {
- sourceVault: {
- id: keyVault.id
- }
- keyUrl: keyVault::key.properties.keyUriWithVersion
- }
- encryptionType: 'EncryptionAtRestWithCustomerKey'
- }
-}
-
-resource keyPermissions 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
- name: guid('msi-${keyVault.id}-${location}-${diskEncryptionSet.id}-KeyVault-Key-Read-RoleAssignment')
- scope: keyVault
- properties: {
- principalId: diskEncryptionSet.identity.principalId
- roleDefinitionId: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', 'e147488a-f6f5-4113-8e2d-b22465e65bf6') // Key Vault Crypto Service Encryption User
- principalType: 'ServicePrincipal'
- }
-}
-
-resource storageAccount 'Microsoft.Storage/storageAccounts@2021-09-01' = {
- name: storageAccountName
- location: location
- kind: 'StorageV2'
- sku: {
- name: 'Standard_LRS'
- }
- properties: {
- allowBlobPublicAccess: false
- publicNetworkAccess: 'Disabled'
- }
-}
-
resource virtualNetwork 'Microsoft.Network/virtualNetworks@2022-01-01' = {
name: virtualNetworkName
location: location
@@ -124,9 +49,3 @@ output managedIdentityPrincipalId string = managedIdentity.properties.principalI
@description('The resource ID of the created Managed Identity.')
output managedIdentityResourceId string = managedIdentity.id
-
-@description('The resource ID of the created Disk Encryption Set.')
-output diskEncryptionSetResourceId string = diskEncryptionSet.id
-
-@description('The resource ID of the created Storage Account.')
-output storageAccountResourceId string = storageAccount.id
diff --git a/modules/Microsoft.DevTestLab/labs/.test/common/deploy.test.bicep b/modules/Microsoft.DevTestLab/labs/.test/common/deploy.test.bicep
index 6be6d83bfa..53d2530243 100644
--- a/modules/Microsoft.DevTestLab/labs/.test/common/deploy.test.bicep
+++ b/modules/Microsoft.DevTestLab/labs/.test/common/deploy.test.bicep
@@ -13,9 +13,6 @@ param location string = deployment().location
@description('Optional. A short identifier for the kind of deployment. Should be kept short to not run into resource-name length-constraints.')
param serviceShort string = 'dtlcom'
-@description('Generated. Used as a basis for unique resource names.')
-param baseTime string = utcNow('u')
-
@description('Optional. Enable telemetry via a Globally Unique Identifier (GUID).')
param enableDefaultTelemetry bool = true
@@ -35,10 +32,6 @@ module resourceGroupResources 'dependencies.bicep' = {
name: '${uniqueString(deployment().name, location)}-paramNested'
params: {
managedIdentityName: 'dep-<>-msi-${serviceShort}'
- // Adding base time to make the name unique as purge protection must be enabled (but may not be longer than 24 characters total)
- keyVaultName: 'dep-<>-kv-${serviceShort}-${substring(uniqueString(baseTime), 0, 3)}'
- diskEncryptionSetName: 'dep-<>-des-${serviceShort}'
- storageAccountName: 'dep<>sa${serviceShort}'
virtualNetworkName: 'dep-<>-vnet-${serviceShort}'
}
}
@@ -79,7 +72,6 @@ module testDeployment '../../deploy.bicep' = {
RdpConnectionType: '7'
}
labStorageType: 'Premium'
- artifactsStorageAccount: resourceGroupResources.outputs.storageAccountResourceId
premiumDataDisks: 'Enabled'
support: {
enabled: 'Enabled'
@@ -91,12 +83,6 @@ module testDeployment '../../deploy.bicep' = {
managementIdentities: {
'${resourceGroupResources.outputs.managedIdentityResourceId}': {}
}
- vmCreationResourceGroupId: resourceGroup.id
- browserConnect: 'Enabled'
- disableAutoUpgradeCseMinorVersion: true
- isolateLabResources: 'Enabled'
- encryptionType: 'EncryptionAtRestWithCustomerKey'
- encryptionDiskEncryptionSetId: resourceGroupResources.outputs.diskEncryptionSetResourceId
virtualNetworks: [
{
name: resourceGroupResources.outputs.virtualNetworkName
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep b/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
index 8d6a858a55..f950feac34 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
@@ -60,11 +60,11 @@ resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (ena
}
}
-resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' existing = {
+resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
name: labName
}
-resource artifactsource 'Microsoft.DevTestLab/labs/artifactsources@2018-10-15-preview' = {
+resource artifactsource 'Microsoft.DevTestLab/labs/artifactsources@2018-09-15' = {
name: name
parent: lab
location: location
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
index c03edf6364..2a76a04d26 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
@@ -13,7 +13,7 @@ This module deploys DevTestLab Labs ArtifactSources.
| Resource Type | API Version |
| :-- | :-- |
-| `Microsoft.DevTestLab/labs/artifactsources` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/artifactsources) |
+| `Microsoft.DevTestLab/labs/artifactsources` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/artifactsources) |
## Parameters
diff --git a/modules/Microsoft.DevTestLab/labs/deploy.bicep b/modules/Microsoft.DevTestLab/labs/deploy.bicep
index ae172ff6f1..a6a9635bb4 100644
--- a/modules/Microsoft.DevTestLab/labs/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/deploy.bicep
@@ -39,9 +39,6 @@ param extendedProperties object = {}
@description('Optional. Type of storage used by the lab. It can be either Premium or Standard. Default is Premium.')
param labStorageType string = 'Premium'
-@description('Optional. The resource ID of the storage account used to store artifacts and images by the lab. Also used for defaultStorageAccount, defaultPremiumStorageAccount and premiumDataDiskStorageAccount properties. If left empty, a default storage account will be created by the lab and used.')
-param artifactsStorageAccount string = ''
-
@description('Optional. The ordered list of artifact resource IDs that should be applied on all Linux VM creations by default, prior to the artifacts specified by the user.')
param mandatoryArtifactsResourceIdsLinux array = []
@@ -64,36 +61,6 @@ param userAssignedIdentities object = {}
@description('Optional. The ID(s) to assign to the virtual machines associated with this lab.')
param managementIdentities object = {}
-@description('Optional. Resource Group allocation for virtual machines. If left empty, virtual machines will be deployed in their own Resource Groups. Default is the same Resource Group for DevTest Lab.')
-param vmCreationResourceGroupId string = resourceGroup().id
-
-@allowed([
- 'Enabled'
- 'Disabled'
-])
-@description('Optional. Enable browser connect on virtual machines if the lab\'s VNETs have configured Azure Bastion. Default is "Disabled".')
-param browserConnect string = 'Disabled'
-
-@description('Optional. Disable auto upgrade custom script extension minor version. Default is false.')
-param disableAutoUpgradeCseMinorVersion bool = false
-
-@allowed([
- 'Enabled'
- 'Disabled'
-])
-@description('Optional. Enable lab resources isolation from the public internet. Default is "Enabled".')
-param isolateLabResources string = 'Enabled'
-
-@allowed([
- 'EncryptionAtRestWithPlatformKey'
- 'EncryptionAtRestWithCustomerKey'
-])
-@description('Optional. Specify how OS and data disks created as part of the lab are encrypted. Default is "EncryptionAtRestWithPlatformKey".')
-param encryptionType string = 'EncryptionAtRestWithPlatformKey'
-
-@description('Conditional. The Disk Encryption Set Resource ID used to encrypt OS and data disks created as part of the the lab. Required if encryptionType is set to "EncryptionAtRestWithCustomerKey".')
-param encryptionDiskEncryptionSetId string = ''
-
@description('Optional. Virtual networks to create for the lab.')
param virtualNetworks array = []
@@ -126,16 +93,15 @@ resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (ena
}
}
-resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' = {
+resource lab 'Microsoft.DevTestLab/labs@2018-09-15' = {
name: name
location: location
tags: tags
identity: {
- type: !empty(userAssignedIdentities) ? 'SystemAssigned,UserAssigned' : 'SystemAssigned'
+ type: !empty(userAssignedIdentities) ? 'UserAssigned' : 'None'
userAssignedIdentities: !empty(userAssignedIdentities) ? userAssignedIdentities : any(null)
}
properties: {
- artifactsStorageAccount: artifactsStorageAccount
announcement: announcement
environmentPermission: environmentPermission
extendedProperties: extendedProperties
@@ -145,14 +111,6 @@ resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' = {
premiumDataDisks: premiumDataDisks
support: support
managementIdentities: managementIdentities
- vmCreationResourceGroupId: vmCreationResourceGroupId
- browserConnect: browserConnect
- disableAutoUpgradeCseMinorVersion: disableAutoUpgradeCseMinorVersion
- isolateLabResources: isolateLabResources
- encryption: {
- type: encryptionType
- diskEncryptionSetId: !empty(encryptionDiskEncryptionSetId) ? encryptionDiskEncryptionSetId : null
- }
}
}
@@ -264,9 +222,6 @@ module lab_roleAssignments '.bicep/nested_roleAssignments.bicep' = [for (roleAss
}
}]
-@description('The principal ID of the system assigned identity.')
-output systemAssignedPrincipalId string = lab.identity.principalId
-
@description('The unique identifier for the lab. Used to track tags that the lab applies to each resource that it creates.')
output uniqueIdentifier string = lab.properties.uniqueIdentifier
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep b/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
index b5ad938502..10fe95fc0a 100644
--- a/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
@@ -40,11 +40,11 @@ resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (ena
}
}
-resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' existing = {
+resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
name: labName
}
-resource notificationChannel 'Microsoft.DevTestLab/labs/notificationchannels@2018-10-15-preview' = {
+resource notificationChannel 'Microsoft.DevTestLab/labs/notificationchannels@2018-09-15' = {
name: name
parent: lab
location: location
@@ -53,7 +53,7 @@ resource notificationChannel 'Microsoft.DevTestLab/labs/notificationchannels@201
description: description
events: events
emailRecipient: emailRecipient
- webhookUrl: webhookUrl
+ webHookUrl: webhookUrl
notificationLocale: notificationLocale
}
}
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
index 59af809aed..d71b328b74 100644
--- a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
@@ -13,7 +13,7 @@ This module deploys DevTestLab Labs NotificationChannels.
| Resource Type | API Version |
| :-- | :-- |
-| `Microsoft.DevTestLab/labs/notificationchannels` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/notificationchannels) |
+| `Microsoft.DevTestLab/labs/notificationchannels` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/notificationchannels) |
## Parameters
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep b/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
index f6ce492f38..2d6b40faca 100644
--- a/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
@@ -66,15 +66,15 @@ resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (ena
}
}
-resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' existing = {
+resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
name: labName
- resource policySets 'policysets@2018-10-15-preview' existing = {
+ resource policySets 'policysets@2018-09-15' existing = {
name: policySetName
}
}
-resource policy 'Microsoft.DevTestLab/labs/policysets/policies@2018-10-15-preview' = {
+resource policy 'Microsoft.DevTestLab/labs/policysets/policies@2018-09-15' = {
name: name
parent: lab::policySets
location: location
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
index 99b631472d..352e86f909 100644
--- a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
@@ -13,7 +13,7 @@ This module deploys DevTestLab Labs PolicySets Policies.
| Resource Type | API Version |
| :-- | :-- |
-| `Microsoft.DevTestLab/labs/policysets/policies` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/policysets/policies) |
+| `Microsoft.DevTestLab/labs/policysets/policies` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/policysets/policies) |
## Parameters
diff --git a/modules/Microsoft.DevTestLab/labs/readme.md b/modules/Microsoft.DevTestLab/labs/readme.md
index 77806ab2d0..7ede1ca981 100644
--- a/modules/Microsoft.DevTestLab/labs/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/readme.md
@@ -16,12 +16,12 @@ This module deploys DevTestLab Labs.
| :-- | :-- |
| `Microsoft.Authorization/locks` | [2020-05-01](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2020-05-01/locks) |
| `Microsoft.Authorization/roleAssignments` | [2022-04-01](https://docs.microsoft.com/en-us/azure/templates/Microsoft.Authorization/2022-04-01/roleAssignments) |
-| `Microsoft.DevTestLab/labs` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs) |
-| `Microsoft.DevTestLab/labs/artifactsources` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/artifactsources) |
-| `Microsoft.DevTestLab/labs/notificationchannels` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/notificationchannels) |
-| `Microsoft.DevTestLab/labs/policysets/policies` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/policysets/policies) |
-| `Microsoft.DevTestLab/labs/schedules` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/schedules) |
-| `Microsoft.DevTestLab/labs/virtualnetworks` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/virtualnetworks) |
+| `Microsoft.DevTestLab/labs` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs) |
+| `Microsoft.DevTestLab/labs/artifactsources` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/artifactsources) |
+| `Microsoft.DevTestLab/labs/notificationchannels` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/notificationchannels) |
+| `Microsoft.DevTestLab/labs/policysets/policies` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/policysets/policies) |
+| `Microsoft.DevTestLab/labs/schedules` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/schedules) |
+| `Microsoft.DevTestLab/labs/virtualnetworks` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/virtualnetworks) |
## Parameters
@@ -33,10 +33,9 @@ This module deploys DevTestLab Labs.
**Conditional parameters**
-| Parameter Name | Type | Default Value | Description |
-| :-- | :-- | :-- | :-- |
-| `encryptionDiskEncryptionSetId` | string | `''` | The Disk Encryption Set Resource ID used to encrypt OS and data disks created as part of the the lab. Required if encryptionType is set to "EncryptionAtRestWithCustomerKey". |
-| `notificationChannels` | _[notificationChannels](notificationChannels/readme.md)_ array | `[]` | Notification Channels to create for the lab. Required if the schedules property "notificationSettingsStatus" is set to "Enabled. |
+| Parameter Name | Type | Description |
+| :-- | :-- | :-- |
+| `notificationChannels` | _[notificationChannels](notificationChannels/readme.md)_ array | Notification Channels to create for the lab. Required if the schedules property "notificationSettingsStatus" is set to "Enabled. |
**Optional parameters**
@@ -44,14 +43,9 @@ This module deploys DevTestLab Labs.
| :-- | :-- | :-- | :-- | :-- |
| `announcement` | object | `{object}` | | The properties of any lab announcement associated with this lab. |
| `artifactSources` | _[artifactSources](artifactSources/readme.md)_ array | `[]` | | Artifact sources to create for the lab. |
-| `artifactsStorageAccount` | string | `''` | | The resource ID of the storage account used to store artifacts and images by the lab. Also used for defaultStorageAccount, defaultPremiumStorageAccount and premiumDataDiskStorageAccount properties. If left empty, a default storage account will be created by the lab and used. |
-| `browserConnect` | string | `'Disabled'` | `[Disabled, Enabled]` | Enable browser connect on virtual machines if the lab's VNETs have configured Azure Bastion. Default is "Disabled". |
-| `disableAutoUpgradeCseMinorVersion` | bool | `False` | | Disable auto upgrade custom script extension minor version. Default is false. |
| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
-| `encryptionType` | string | `'EncryptionAtRestWithPlatformKey'` | `[EncryptionAtRestWithCustomerKey, EncryptionAtRestWithPlatformKey]` | Specify how OS and data disks created as part of the lab are encrypted. Default is "EncryptionAtRestWithPlatformKey". |
| `environmentPermission` | string | `'Reader'` | `[Contributor, Reader]` | The access rights to be granted to the user when provisioning an environment. Default is "Reader". |
| `extendedProperties` | object | `{object}` | | Extended properties of the lab used for experimental features. |
-| `isolateLabResources` | string | `'Enabled'` | `[Disabled, Enabled]` | Enable lab resources isolation from the public internet. Default is "Enabled". |
| `labStorageType` | string | `'Premium'` | `[Premium, Standard, StandardSSD]` | Type of storage used by the lab. It can be either Premium or Standard. Default is Premium. |
| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
| `lock` | string | `''` | `['', CanNotDelete, ReadOnly]` | Specify the type of lock. |
@@ -66,7 +60,6 @@ This module deploys DevTestLab Labs.
| `tags` | object | `{object}` | | Tags of the resource. |
| `userAssignedIdentities` | object | `{object}` | | The ID(s) to assign to the resource. |
| `virtualNetworks` | _[virtualNetworks](virtualNetworks/readme.md)_ array | `[]` | | Virtual networks to create for the lab. |
-| `vmCreationResourceGroupId` | string | `[resourceGroup().id]` | | Resource Group allocation for virtual machines. If left empty, virtual machines will be deployed in their own Resource Groups. Default is the same Resource Group for DevTest Lab. |
### Parameter Usage: `roleAssignments`
@@ -210,7 +203,6 @@ userAssignedIdentities: {
| `name` | string | The name of the lab. |
| `resourceGroupName` | string | The resource group the lab was deployed into. |
| `resourceId` | string | The resource ID of the lab. |
-| `systemAssignedPrincipalId` | string | The principal ID of the system assigned identity. |
| `uniqueIdentifier` | string | The unique identifier for the lab. Used to track tags that the lab applies to each resource that it creates. |
## Cross-referenced modules
@@ -263,17 +255,11 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
uri: 'https://github.com/Azure/azure-devtestlab.git'
}
]
- artifactsStorageAccount: ''
- browserConnect: 'Enabled'
- disableAutoUpgradeCseMinorVersion: true
enableDefaultTelemetry: ''
- encryptionDiskEncryptionSetId: ''
- encryptionType: 'EncryptionAtRestWithCustomerKey'
environmentPermission: 'Contributor'
extendedProperties: {
RdpConnectionType: '7'
}
- isolateLabResources: 'Enabled'
labStorageType: 'Premium'
location: ''
lock: 'CanNotDelete'
@@ -439,7 +425,6 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
]
}
]
- vmCreationResourceGroupId: ''
}
}
```
@@ -491,24 +476,9 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
}
]
},
- "artifactsStorageAccount": {
- "value": ""
- },
- "browserConnect": {
- "value": "Enabled"
- },
- "disableAutoUpgradeCseMinorVersion": {
- "value": true
- },
"enableDefaultTelemetry": {
"value": ""
},
- "encryptionDiskEncryptionSetId": {
- "value": ""
- },
- "encryptionType": {
- "value": "EncryptionAtRestWithCustomerKey"
- },
"environmentPermission": {
"value": "Contributor"
},
@@ -517,9 +487,6 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
"RdpConnectionType": "7"
}
},
- "isolateLabResources": {
- "value": "Enabled"
- },
"labStorageType": {
"value": "Premium"
},
@@ -710,9 +677,6 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
]
}
]
- },
- "vmCreationResourceGroupId": {
- "value": ""
}
}
}
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep b/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
index 5de21c9992..f65a76a4eb 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
@@ -68,11 +68,11 @@ resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (ena
}
}
-resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' existing = {
+resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
name: labName
}
-resource schedule 'Microsoft.DevTestLab/labs/schedules@2018-10-15-preview' = {
+resource schedule 'Microsoft.DevTestLab/labs/schedules@2018-09-15' = {
name: name
parent: lab
location: location
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/readme.md b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
index 2cf7829261..d4ba903cf5 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
@@ -13,7 +13,7 @@ This module deploys DevTestLab Labs Schedules.
| Resource Type | API Version |
| :-- | :-- |
-| `Microsoft.DevTestLab/labs/schedules` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/schedules) |
+| `Microsoft.DevTestLab/labs/schedules` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/schedules) |
## Parameters
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep b/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
index b5b7eed1dd..c7aaa277cb 100644
--- a/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
@@ -37,11 +37,11 @@ resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (ena
}
}
-resource lab 'Microsoft.DevTestLab/labs@2018-10-15-preview' existing = {
+resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
name: labName
}
-resource virtualNetwork 'Microsoft.DevTestLab/labs/virtualnetworks@2018-10-15-preview' = {
+resource virtualNetwork 'Microsoft.DevTestLab/labs/virtualnetworks@2018-09-15' = {
name: name
parent: lab
location: location
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
index 0506a898ff..500d447308 100644
--- a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
@@ -13,7 +13,7 @@ This module deploys DevTestLab Labs VirtualNetworks.
| Resource Type | API Version |
| :-- | :-- |
-| `Microsoft.DevTestLab/labs/virtualnetworks` | [2018-10-15-preview](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/labs/virtualnetworks) |
+| `Microsoft.DevTestLab/labs/virtualnetworks` | [2018-09-15](https://docs.microsoft.com/en-us/azure/templates/Microsoft.DevTestLab/2018-09-15/labs/virtualnetworks) |
## Parameters
From 817bb82778f3818bddcf0257353bb92f104da7f3 Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Tue, 27 Dec 2022 14:19:46 +1100
Subject: [PATCH 13/18] updated documentation
---
.../Microsoft.DevTestLab/labs/artifactSources/deploy.bicep | 5 ++++-
.../Microsoft.DevTestLab/labs/artifactSources/readme.md | 7 ++-----
.../labs/notificationChannels/deploy.bicep | 3 +++
.../labs/notificationChannels/readme.md | 1 +
.../labs/policySets/policies/deploy.bicep | 3 +++
.../labs/policySets/policies/readme.md | 1 +
modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep | 3 +++
modules/Microsoft.DevTestLab/labs/schedules/readme.md | 1 +
.../Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep | 3 +++
.../Microsoft.DevTestLab/labs/virtualNetworks/readme.md | 1 +
10 files changed, 22 insertions(+), 6 deletions(-)
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep b/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
index f950feac34..e78424e677 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
@@ -32,7 +32,7 @@ param securityToken string = ''
'StorageAccount'
'VsoGit'
])
-@sys.description('The artifact source\'s type.')
+@sys.description('Optional. The artifact source\'s type.')
param sourceType string = ''
@allowed([
@@ -89,3 +89,6 @@ output resourceId string = artifactsource.id
@sys.description('The name of the resource group the artifact source was created in.')
output resourceGroupName string = resourceGroup().name
+
+@description('The location the artifact source was deployed into.')
+output location string = artifactsource.location
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
index 2a76a04d26..9387ea98ae 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
@@ -41,14 +41,10 @@ This module deploys DevTestLab Labs ArtifactSources.
| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
| `securityToken` | secureString | `''` | | The security token to authenticate to the artifact source. |
+| `sourceType` | string | `''` | `['', GitHub, StorageAccount, VsoGit]` | The artifact source's type. |
| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | Indicates if the artifact source is enabled (values: Enabled, Disabled). Default is "Enabled". |
| `tags` | object | `{object}` | | Tags of the resource. |
-**The artifact source's type parameters**
-
-| Parameter Name | Type | Description |
-| :-- | :-- | :-- |
-
### Parameter Usage: `tags`
@@ -95,6 +91,7 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
+| `location` | string | The location the artifact source was deployed into. |
| `name` | string | The name of the artifact source. |
| `resourceGroupName` | string | The name of the resource group the artifact source was created in. |
| `resourceId` | string | The resource ID of the artifact source. |
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep b/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
index 10fe95fc0a..64a8ac9185 100644
--- a/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
@@ -66,3 +66,6 @@ output resourceId string = notificationChannel.id
@sys.description('The name of the resource group the notification channel was created in.')
output resourceGroupName string = resourceGroup().name
+
+@sys.description('The location the notification channel was deployed into.')
+output location string = notificationChannel.location
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
index d71b328b74..80970b13b2 100644
--- a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
@@ -88,6 +88,7 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
+| `location` | string | The location the notification channel was deployed into. |
| `name` | string | The name of the notification channel. |
| `resourceGroupName` | string | The name of the resource group the notification channel was created in. |
| `resourceId` | string | The resource ID of the notification channel. |
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep b/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
index 2d6b40faca..df5768fd97 100644
--- a/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
@@ -97,3 +97,6 @@ output resourceId string = policy.id
@sys.description('The name of the resource group the policy was created in.')
output resourceGroupName string = resourceGroup().name
+
+@sys.description('The location the policy was deployed into.')
+output location string = policy.location
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
index 352e86f909..4663eb05fc 100644
--- a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
@@ -90,6 +90,7 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
+| `location` | string | The location the policy was deployed into. |
| `name` | string | The name of the policy. |
| `resourceGroupName` | string | The name of the resource group the policy was created in. |
| `resourceId` | string | The resource ID of the policy. |
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep b/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
index f65a76a4eb..7abe4ca10c 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
@@ -100,3 +100,6 @@ output resourceId string = schedule.id
@sys.description('The name of the resource group the schedule was created in.')
output resourceGroupName string = resourceGroup().name
+
+@sys.description('The location the schedule was deployed into.')
+output location string = schedule.location
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/readme.md b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
index d4ba903cf5..4b1a354c37 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
@@ -92,6 +92,7 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
+| `location` | string | The location the schedule was deployed into. |
| `name` | string | The name of the schedule. |
| `resourceGroupName` | string | The name of the resource group the schedule was created in. |
| `resourceId` | string | The resource ID of the schedule. |
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep b/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
index c7aaa277cb..93195b27ba 100644
--- a/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
@@ -62,3 +62,6 @@ output resourceId string = virtualNetwork.id
@sys.description('The name of the resource group the lab virtual network was created in.')
output resourceGroupName string = resourceGroup().name
+
+@sys.description('The location the virtual network was deployed into.')
+output location string = virtualNetwork.location
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
index 500d447308..433e2c8392 100644
--- a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
@@ -87,6 +87,7 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
+| `location` | string | The location the virtual network was deployed into. |
| `name` | string | The name of the lab virtual network. |
| `resourceGroupName` | string | The name of the resource group the lab virtual network was created in. |
| `resourceId` | string | The resource ID of the lab virtual network. |
From a7f4dd3687da9db990767aad8ea21ea3360e1ebb Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Tue, 27 Dec 2022 20:54:12 +1100
Subject: [PATCH 14/18] updated parameters and documentation
---
modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep | 2 +-
modules/Microsoft.DevTestLab/labs/artifactSources/readme.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep b/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
index e78424e677..01a682440f 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
@@ -13,7 +13,7 @@ param tags object = {}
@sys.description('Optional. The artifact source\'s display name. Default is the name of the artifact source.')
param displayName string = name
-@sys.description('Optional. The artifact source\'s branch reference (E.g. main or master)')
+@sys.description('Optional. The artifact source\'s branch reference (e.g. main or master).')
param branchRef string = ''
@sys.description('Conditional. The folder containing artifacts. At least one folder path is required. Required if "armTemplateFolderPath" is empty.')
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
index 9387ea98ae..528a681690 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
@@ -36,7 +36,7 @@ This module deploys DevTestLab Labs ArtifactSources.
| Parameter Name | Type | Default Value | Allowed Values | Description |
| :-- | :-- | :-- | :-- | :-- |
-| `branchRef` | string | `''` | | The artifact source's branch reference (E.g. main or master) |
+| `branchRef` | string | `''` | | The artifact source's branch reference (e.g. main or master). |
| `displayName` | string | `[parameters('name')]` | | The artifact source's display name. Default is the name of the artifact source. |
| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
From 53db97a7a506c7de4b26c46c081943ee1bb25161 Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Tue, 27 Dec 2022 21:13:12 +1100
Subject: [PATCH 15/18] fixed outputs
---
.../labs/artifactSources/deploy.bicep | 9 +--------
.../Microsoft.DevTestLab/labs/artifactSources/readme.md | 2 --
modules/Microsoft.DevTestLab/labs/deploy.bicep | 5 -----
.../labs/notificationChannels/deploy.bicep | 9 +--------
.../labs/notificationChannels/readme.md | 2 --
.../labs/policySets/policies/deploy.bicep | 9 +--------
.../labs/policySets/policies/readme.md | 2 --
modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep | 9 +--------
modules/Microsoft.DevTestLab/labs/schedules/readme.md | 2 --
.../labs/virtualNetworks/deploy.bicep | 9 +--------
.../Microsoft.DevTestLab/labs/virtualNetworks/readme.md | 2 --
11 files changed, 5 insertions(+), 55 deletions(-)
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep b/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
index 01a682440f..4e9a27001a 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/deploy.bicep
@@ -4,9 +4,6 @@ param labName string
@sys.description('Required. The name of the artifact source.')
param name string
-@sys.description('Optional. Location for all Resources.')
-param location string = resourceGroup().location
-
@sys.description('Optional. Tags of the resource.')
param tags object = {}
@@ -49,7 +46,7 @@ param uri string
param enableDefaultTelemetry bool = true
resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (enableDefaultTelemetry) {
- name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name, location)}'
+ name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name)}'
properties: {
mode: 'Incremental'
template: {
@@ -67,7 +64,6 @@ resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
resource artifactsource 'Microsoft.DevTestLab/labs/artifactsources@2018-09-15' = {
name: name
parent: lab
- location: location
tags: tags
properties: {
displayName: displayName
@@ -89,6 +85,3 @@ output resourceId string = artifactsource.id
@sys.description('The name of the resource group the artifact source was created in.')
output resourceGroupName string = resourceGroup().name
-
-@description('The location the artifact source was deployed into.')
-output location string = artifactsource.location
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
index 528a681690..7758f73682 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
@@ -39,7 +39,6 @@ This module deploys DevTestLab Labs ArtifactSources.
| `branchRef` | string | `''` | | The artifact source's branch reference (e.g. main or master). |
| `displayName` | string | `[parameters('name')]` | | The artifact source's display name. Default is the name of the artifact source. |
| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
-| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
| `securityToken` | secureString | `''` | | The security token to authenticate to the artifact source. |
| `sourceType` | string | `''` | `['', GitHub, StorageAccount, VsoGit]` | The artifact source's type. |
| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | Indicates if the artifact source is enabled (values: Enabled, Disabled). Default is "Enabled". |
@@ -91,7 +90,6 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
-| `location` | string | The location the artifact source was deployed into. |
| `name` | string | The name of the artifact source. |
| `resourceGroupName` | string | The name of the resource group the artifact source was created in. |
| `resourceId` | string | The resource ID of the artifact source. |
diff --git a/modules/Microsoft.DevTestLab/labs/deploy.bicep b/modules/Microsoft.DevTestLab/labs/deploy.bicep
index a6a9635bb4..ec790be26d 100644
--- a/modules/Microsoft.DevTestLab/labs/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/deploy.bicep
@@ -128,7 +128,6 @@ module lab_virtualNetworks 'virtualNetworks/deploy.bicep' = [for (virtualNetwork
params: {
labName: lab.name
name: virtualNetwork.name
- location: location
tags: tags
externalProviderResourceId: virtualNetwork.externalProviderResourceId
description: contains(virtualNetwork, 'description') ? virtualNetwork.description : ''
@@ -143,7 +142,6 @@ module lab_policies 'policySets/policies/deploy.bicep' = [for (policy, index) in
params: {
labName: lab.name
name: policy.name
- location: location
tags: tags
description: contains(policy, 'description') ? policy.description : ''
evaluatorType: policy.evaluatorType
@@ -160,7 +158,6 @@ module lab_schedules 'schedules/deploy.bicep' = [for (schedule, index) in schedu
params: {
labName: lab.name
name: schedule.name
- location: location
tags: tags
taskType: schedule.taskType
dailyRecurrence: contains(schedule, 'dailyRecurrence') ? schedule.dailyRecurrence : {}
@@ -180,7 +177,6 @@ module lab_notificationChannels 'notificationChannels/deploy.bicep' = [for (noti
params: {
labName: lab.name
name: notificationChannel.name
- location: location
tags: tags
description: contains(notificationChannel, 'description') ? notificationChannel.description : ''
events: notificationChannel.events
@@ -196,7 +192,6 @@ module lab_artifactSources 'artifactSources/deploy.bicep' = [for (artifactSource
params: {
labName: lab.name
name: artifactSource.name
- location: location
tags: tags
displayName: contains(artifactSource, 'displayName') ? artifactSource.displayName : artifactSource.name
branchRef: contains(artifactSource, 'branchRef') ? artifactSource.branchRef : ''
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep b/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
index 64a8ac9185..f8b704c845 100644
--- a/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/deploy.bicep
@@ -4,9 +4,6 @@ param labName string
@sys.description('Required. The name of the notification channel.')
param name string
-@sys.description('Optional. Location for all Resources.')
-param location string = resourceGroup().location
-
@sys.description('Optional. Tags of the resource.')
param tags object = {}
@@ -29,7 +26,7 @@ param notificationLocale string = 'en'
param enableDefaultTelemetry bool = true
resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (enableDefaultTelemetry) {
- name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name, location)}'
+ name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name)}'
properties: {
mode: 'Incremental'
template: {
@@ -47,7 +44,6 @@ resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
resource notificationChannel 'Microsoft.DevTestLab/labs/notificationchannels@2018-09-15' = {
name: name
parent: lab
- location: location
tags: tags
properties: {
description: description
@@ -66,6 +62,3 @@ output resourceId string = notificationChannel.id
@sys.description('The name of the resource group the notification channel was created in.')
output resourceGroupName string = resourceGroup().name
-
-@sys.description('The location the notification channel was deployed into.')
-output location string = notificationChannel.location
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
index 80970b13b2..23b0b96230 100644
--- a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
@@ -38,7 +38,6 @@ This module deploys DevTestLab Labs NotificationChannels.
| :-- | :-- | :-- | :-- |
| `description` | string | `''` | Description of notification. |
| `enableDefaultTelemetry` | bool | `True` | Enable telemetry via a Globally Unique Identifier (GUID). |
-| `location` | string | `[resourceGroup().location]` | Location for all Resources. |
| `notificationLocale` | string | `'en'` | The locale to use when sending a notification (fallback for unsupported languages is EN). Default is "en". |
| `tags` | object | `{object}` | Tags of the resource. |
@@ -88,7 +87,6 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
-| `location` | string | The location the notification channel was deployed into. |
| `name` | string | The name of the notification channel. |
| `resourceGroupName` | string | The name of the resource group the notification channel was created in. |
| `resourceId` | string | The resource ID of the notification channel. |
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep b/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
index df5768fd97..28af34ec08 100644
--- a/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/deploy.bicep
@@ -7,9 +7,6 @@ param policySetName string = 'default'
@sys.description('Required. The name of the policy.')
param name string
-@sys.description('Optional. Location for all Resources.')
-param location string = resourceGroup().location
-
@sys.description('Optional. Tags of the resource.')
param tags object = {}
@@ -55,7 +52,7 @@ param threshold string
param enableDefaultTelemetry bool = true
resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (enableDefaultTelemetry) {
- name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name, location)}'
+ name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name)}'
properties: {
mode: 'Incremental'
template: {
@@ -77,7 +74,6 @@ resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
resource policy 'Microsoft.DevTestLab/labs/policysets/policies@2018-09-15' = {
name: name
parent: lab::policySets
- location: location
tags: tags
properties: {
description: description
@@ -97,6 +93,3 @@ output resourceId string = policy.id
@sys.description('The name of the resource group the policy was created in.')
output resourceGroupName string = resourceGroup().name
-
-@sys.description('The location the policy was deployed into.')
-output location string = policy.location
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
index 4663eb05fc..ee01a82e80 100644
--- a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
@@ -39,7 +39,6 @@ This module deploys DevTestLab Labs PolicySets Policies.
| `description` | string | `''` | | The description of the policy. |
| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
| `factData` | string | `''` | | The fact data of the policy. |
-| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
| `policySetName` | string | `'default'` | | The name of the parent policy set. |
| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | The status of the policy. Default is "Enabled". |
| `tags` | object | `{object}` | | Tags of the resource. |
@@ -90,7 +89,6 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
-| `location` | string | The location the policy was deployed into. |
| `name` | string | The name of the policy. |
| `resourceGroupName` | string | The name of the resource group the policy was created in. |
| `resourceId` | string | The resource ID of the policy. |
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep b/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
index 7abe4ca10c..4db4d99deb 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/schedules/deploy.bicep
@@ -15,9 +15,6 @@ param name string
@sys.description('Required. The task type of the schedule (e.g. LabVmsShutdownTask, LabVmsStartupTask).')
param taskType string
-@sys.description('Optional. Location for all Resources.')
-param location string = resourceGroup().location
-
@sys.description('Optional. Tags of the resource.')
param tags object = {}
@@ -57,7 +54,7 @@ param notificationSettingsTimeInMinutes int = 30
param enableDefaultTelemetry bool = true
resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (enableDefaultTelemetry) {
- name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name, location)}'
+ name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name)}'
properties: {
mode: 'Incremental'
template: {
@@ -75,7 +72,6 @@ resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
resource schedule 'Microsoft.DevTestLab/labs/schedules@2018-09-15' = {
name: name
parent: lab
- location: location
tags: tags
properties: {
taskType: taskType
@@ -100,6 +96,3 @@ output resourceId string = schedule.id
@sys.description('The name of the resource group the schedule was created in.')
output resourceGroupName string = resourceGroup().name
-
-@sys.description('The location the schedule was deployed into.')
-output location string = schedule.location
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/readme.md b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
index 4b1a354c37..a0a3554acf 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
@@ -37,7 +37,6 @@ This module deploys DevTestLab Labs Schedules.
| `dailyRecurrence` | object | `{object}` | | If the schedule will occur once each day of the week, specify the daily recurrence. |
| `enableDefaultTelemetry` | bool | `True` | | Enable telemetry via a Globally Unique Identifier (GUID). |
| `hourlyRecurrence` | object | `{object}` | | If the schedule will occur multiple times a day, specify the hourly recurrence. |
-| `location` | string | `[resourceGroup().location]` | | Location for all Resources. |
| `notificationSettingsStatus` | string | `'Disabled'` | `[Disabled, Enabled]` | If notifications are enabled for this schedule (i.e. Enabled, Disabled). Default is "Disabled". |
| `notificationSettingsTimeInMinutes` | int | `30` | | Time in minutes before event at which notification will be sent. Optional if "notificationSettingsStatus" is set to "Enabled". Default is 30 minutes. |
| `status` | string | `'Enabled'` | `[Disabled, Enabled]` | The status of the schedule (i.e. Enabled, Disabled). Default is "Enabled". |
@@ -92,7 +91,6 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
-| `location` | string | The location the schedule was deployed into. |
| `name` | string | The name of the schedule. |
| `resourceGroupName` | string | The name of the resource group the schedule was created in. |
| `resourceId` | string | The resource ID of the schedule. |
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep b/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
index 93195b27ba..500d6eac41 100644
--- a/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/deploy.bicep
@@ -7,9 +7,6 @@ param name string
@sys.description('Required. The resource ID of the virtual network.')
param externalProviderResourceId string
-@sys.description('Optional. Location for all Resources.')
-param location string = resourceGroup().location
-
@sys.description('Optional. Tags of the resource.')
param tags object = {}
@@ -26,7 +23,7 @@ param subnetOverrides array = []
param enableDefaultTelemetry bool = true
resource defaultTelemetry 'Microsoft.Resources/deployments@2021-04-01' = if (enableDefaultTelemetry) {
- name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name, location)}'
+ name: 'pid-47ed15a6-730a-4827-bcb4-0fd963ffbd82-${uniqueString(deployment().name)}'
properties: {
mode: 'Incremental'
template: {
@@ -44,7 +41,6 @@ resource lab 'Microsoft.DevTestLab/labs@2018-09-15' existing = {
resource virtualNetwork 'Microsoft.DevTestLab/labs/virtualnetworks@2018-09-15' = {
name: name
parent: lab
- location: location
tags: tags
properties: {
description: description
@@ -62,6 +58,3 @@ output resourceId string = virtualNetwork.id
@sys.description('The name of the resource group the lab virtual network was created in.')
output resourceGroupName string = resourceGroup().name
-
-@sys.description('The location the virtual network was deployed into.')
-output location string = virtualNetwork.location
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
index 433e2c8392..afbb0eca99 100644
--- a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
@@ -37,7 +37,6 @@ This module deploys DevTestLab Labs VirtualNetworks.
| `allowedSubnets` | array | `[]` | The allowed subnets of the virtual network. |
| `description` | string | `''` | The description of the virtual network. |
| `enableDefaultTelemetry` | bool | `True` | Enable telemetry via a Globally Unique Identifier (GUID). |
-| `location` | string | `[resourceGroup().location]` | Location for all Resources. |
| `subnetOverrides` | array | `[]` | The subnet overrides of the virtual network. |
| `tags` | object | `{object}` | Tags of the resource. |
@@ -87,7 +86,6 @@ tags: {
| Output Name | Type | Description |
| :-- | :-- | :-- |
-| `location` | string | The location the virtual network was deployed into. |
| `name` | string | The name of the lab virtual network. |
| `resourceGroupName` | string | The name of the resource group the lab virtual network was created in. |
| `resourceId` | string | The resource ID of the lab virtual network. |
From 68732ef2760965ad946b32a70aaf89352333ae9f Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Wed, 28 Dec 2022 08:23:25 +1100
Subject: [PATCH 16/18] reverting API Spec List from Upstream
---
utilities/src/apiSpecsList.json | 30432 +++++++++++++++---------------
1 file changed, 15216 insertions(+), 15216 deletions(-)
diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json
index c8079cddd2..db1176c84d 100644
--- a/utilities/src/apiSpecsList.json
+++ b/utilities/src/apiSpecsList.json
@@ -1,15218 +1,15218 @@
{
- "Microsoft.AAD": {
- "domainServices": [
- "2017-01-01",
- "2017-06-01",
- "2020-01-01",
- "2021-03-01",
- "2021-05-01",
- "2022-09-01",
- "2022-12-01"
- ],
- "domainServices/ouContainer": [
- "2017-06-01",
- "2020-01-01",
- "2021-03-01",
- "2021-05-01",
- "2022-09-01",
- "2022-12-01"
- ]
- },
- "microsoft.aadiam": {
- "azureADMetrics": [
- "2020-07-01-preview"
- ],
- "diagnosticSettings": [
- "2017-04-01",
- "2017-04-01-preview"
- ],
- "privateLinkForAzureAd": [
- "2020-03-01",
- "2020-03-01-preview"
- ],
- "privateLinkForAzureAd/privateEndpointConnections": [
- "2020-03-01"
- ]
- },
- "Microsoft.Addons": {
- "supportProviders/supportPlanTypes": [
- "2017-05-15",
- "2018-03-01"
- ]
- },
- "Microsoft.Advisor": {
- "configurations": [
- "2017-04-19",
- "2020-01-01",
- "2022-09-01"
- ],
- "recommendations/suppressions": [
- "2016-07-12-preview",
- "2017-03-31",
- "2017-04-19",
- "2020-01-01",
- "2022-09-01"
- ]
- },
- "Microsoft.AgFoodPlatform": {
- "farmBeats": [
- "2020-05-12-preview",
- "2021-09-01-preview"
- ],
- "farmBeats/extensions": [
- "2020-05-12-preview",
- "2021-09-01-preview"
- ],
- "farmBeats/privateEndpointConnections": [
- "2021-09-01-preview"
- ],
- "farmBeats/solutions": [
- "2021-09-01-preview"
- ]
- },
- "Microsoft.AlertsManagement": {
- "actionRules": [
- "2018-11-02-privatepreview",
- "2019-05-05-preview",
- "2021-08-08",
- "2021-08-08-preview"
- ],
- "prometheusRuleGroups": [
- "2021-07-22-preview"
- ],
- "smartDetectorAlertRules": [
- "2019-03-01",
- "2019-06-01",
- "2021-04-01"
- ]
- },
- "Microsoft.AnalysisServices": {
- "servers": [
- "2016-05-16",
- "2017-07-14",
- "2017-08-01",
- "2017-08-01-beta"
- ]
- },
- "Microsoft.ApiManagement": {
- "service": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/api-version-sets": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview"
- ],
- "service/apis": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/diagnostics": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/diagnostics/loggers": [
- "2017-03-01",
- "2018-01-01"
- ],
- "service/apis/issues": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/issues/attachments": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/issues/comments": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/operations": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/operations/policies": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/operations/policy": [
- "2016-10-10"
- ],
- "service/apis/operations/tags": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/policies": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/policy": [
- "2016-10-10"
- ],
- "service/apis/releases": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/schemas": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/tagDescriptions": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apis/tags": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/apiVersionSets": [
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/authorizationProviders": [
- "2022-04-01-preview"
- ],
- "service/authorizationProviders/authorizations": [
- "2022-04-01-preview"
- ],
- "service/authorizationProviders/authorizations/accessPolicies": [
- "2022-04-01-preview"
- ],
- "service/authorizationServers": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/backends": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/caches": [
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/certificates": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/contentTypes": [
- "2019-12-01",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/contentTypes/contentItems": [
- "2019-12-01",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/diagnostics": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/diagnostics/loggers": [
- "2017-03-01",
- "2018-01-01"
- ],
- "service/gateways": [
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/gateways/apis": [
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/gateways/certificateAuthorities": [
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/gateways/hostnameConfigurations": [
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/groups": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/groups/users": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/identityProviders": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/loggers": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/namedValues": [
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/notifications": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/notifications/recipientEmails": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/notifications/recipientUsers": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/openidConnectProviders": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/policies": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/policyFragments": [
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/portalconfigs": [
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/portalRevisions": [
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/portalsettings": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/privateEndpointConnections": [
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/products": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/products/apis": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/products/groups": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/products/policies": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/products/policy": [
- "2016-10-10"
- ],
- "service/products/tags": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/properties": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01"
- ],
- "service/schemas": [
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/subscriptions": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/tags": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/templates": [
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/tenant": [
- "2016-10-10",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ],
- "service/users": [
- "2016-07-07",
- "2016-10-10",
- "2017-03-01",
- "2018-01-01",
- "2018-06-01-preview",
- "2019-01-01",
- "2019-12-01",
- "2019-12-01-preview",
- "2020-06-01-preview",
- "2020-12-01",
- "2021-01-01-preview",
- "2021-04-01-preview",
- "2021-08-01",
- "2021-12-01-preview",
- "2022-04-01-preview"
- ]
- },
- "Microsoft.App": {
- "connectedEnvironments": [
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "connectedEnvironments/certificates": [
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "connectedEnvironments/daprComponents": [
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "connectedEnvironments/storages": [
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "containerApps": [
- "2022-01-01-preview",
- "2022-03-01",
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "containerApps/authConfigs": [
- "2022-01-01-preview",
- "2022-03-01",
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "containerApps/sourcecontrols": [
- "2022-01-01-preview",
- "2022-03-01",
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "managedEnvironments": [
- "2022-01-01-preview",
- "2022-03-01",
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "managedEnvironments/certificates": [
- "2022-01-01-preview",
- "2022-03-01",
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "managedEnvironments/daprComponents": [
- "2022-01-01-preview",
- "2022-03-01",
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "managedEnvironments/storages": [
- "2022-01-01-preview",
- "2022-03-01",
- "2022-06-01-preview",
- "2022-10-01"
- ]
- },
- "Microsoft.AppComplianceAutomation": {
- "reports": [
- "2022-11-16-preview"
- ]
- },
- "Microsoft.AppConfiguration": {
- "configurationStores": [
- "2019-02-01-preview",
- "2019-10-01",
- "2019-11-01-preview",
- "2020-06-01",
- "2020-07-01-preview",
- "2021-03-01-preview",
- "2021-10-01-preview",
- "2022-03-01-preview",
- "2022-05-01"
- ],
- "configurationStores/keyValues": [
- "2020-07-01-preview",
- "2021-03-01-preview",
- "2021-10-01-preview",
- "2022-03-01-preview",
- "2022-05-01"
- ],
- "configurationStores/privateEndpointConnections": [
- "2019-11-01-preview",
- "2020-06-01",
- "2020-07-01-preview",
- "2021-03-01-preview",
- "2021-10-01-preview",
- "2022-03-01-preview",
- "2022-05-01"
- ],
- "configurationStores/replicas": [
- "2022-03-01-preview"
- ]
- },
- "Microsoft.AppPlatform": {
- "Spring": [
- "2020-07-01",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/apiPortals": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/apiPortals/domains": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/applicationAccelerators": [
- "2022-11-01-preview"
- ],
- "Spring/applicationAccelerators/customizedAccelerators": [
- "2022-11-01-preview"
- ],
- "Spring/applicationLiveViews": [
- "2022-11-01-preview"
- ],
- "Spring/apps": [
- "2020-07-01",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/apps/bindings": [
- "2020-07-01",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/apps/deployments": [
- "2020-07-01",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/apps/domains": [
- "2020-07-01",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/buildServices/agentPools": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/buildServices/builders": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/buildServices/builders/buildpackBindings": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/buildServices/builds": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/certificates": [
- "2020-07-01",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/configServers": [
- "2020-07-01",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/configurationServices": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/DevToolPortals": [
- "2022-11-01-preview"
- ],
- "Spring/gateways": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/gateways/domains": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/gateways/routeConfigs": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/monitoringSettings": [
- "2020-07-01",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/serviceRegistries": [
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-04-01",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ],
- "Spring/storages": [
- "2021-09-01-preview",
- "2022-01-01-preview",
- "2022-03-01-preview",
- "2022-05-01-preview",
- "2022-09-01-preview",
- "2022-11-01-preview",
- "2022-12-01"
- ]
- },
- "Microsoft.Attestation": {
- "attestationProviders": [
- "2018-09-01-preview",
- "2020-10-01",
- "2021-06-01-preview"
- ],
- "attestationProviders/privateEndpointConnections": [
- "2020-10-01",
- "2021-06-01-preview"
- ]
- },
- "Microsoft.Authorization": {
- "accessReviewHistoryDefinitions": [
- "2021-11-16-preview",
- "2021-12-01-preview"
- ],
- "accessReviewScheduleDefinitions": [
- "2018-05-01-preview",
- "2021-03-01-preview",
- "2021-07-01-preview",
- "2021-11-16-preview",
- "2021-12-01-preview"
- ],
- "accessReviewScheduleDefinitions/instances": [
- "2021-07-01-preview",
- "2021-11-16-preview",
- "2021-12-01-preview"
- ],
- "accessReviewScheduleSettings": [
- "2018-05-01-preview",
- "2021-03-01-preview",
- "2021-07-01-preview",
- "2021-11-16-preview",
- "2021-12-01-preview"
- ],
- "locks": [
- "2015-01-01",
- "2016-09-01",
- "2017-04-01",
- "2020-05-01"
- ],
- "policyAssignments": [
- "2015-10-01-preview",
- "2015-11-01",
- "2016-04-01",
- "2016-12-01",
- "2017-06-01-preview",
- "2018-03-01",
- "2018-05-01",
- "2019-01-01",
- "2019-06-01",
- "2019-09-01",
- "2020-03-01",
- "2020-09-01",
- "2021-06-01",
- "2022-06-01"
- ],
- "policydefinitions": [
- "2015-10-01-preview",
- "2015-11-01",
- "2016-04-01",
- "2016-12-01",
- "2018-03-01",
- "2018-05-01",
- "2019-01-01",
- "2019-06-01",
- "2019-09-01",
- "2020-03-01",
- "2020-09-01",
- "2021-06-01"
- ],
- "policyExemptions": [
- "2020-07-01-preview",
- "2022-07-01-preview"
- ],
- "policySetDefinitions": [
- "2017-06-01-preview",
- "2018-03-01",
- "2018-05-01",
- "2019-01-01",
- "2019-06-01",
- "2019-09-01",
- "2020-03-01",
- "2020-09-01",
- "2021-06-01"
- ],
- "roleAssignmentApprovals/stages": [
- "2021-01-01-preview"
- ],
- "roleAssignments": [
- "2015-07-01",
- "2017-10-01-preview",
- "2018-01-01-preview",
- "2018-09-01-preview",
- "2020-03-01-preview",
- "2020-04-01-preview",
- "2020-08-01-preview",
- "2020-10-01-preview",
- "2022-04-01"
- ],
- "roleAssignmentScheduleRequests": [
- "2020-10-01",
- "2020-10-01-preview",
- "2022-04-01-preview"
- ],
- "roleDefinitions": [
- "2015-07-01",
- "2018-01-01-preview",
- "2022-04-01"
- ],
- "roleEligibilityScheduleRequests": [
- "2020-10-01",
- "2020-10-01-preview",
- "2022-04-01-preview"
- ],
- "roleManagementPolicyAssignments": [
- "2020-10-01",
- "2020-10-01-preview"
- ],
- "variables": [
- "2022-08-01-preview"
- ],
- "variables/values": [
- "2022-08-01-preview"
- ]
- },
- "Microsoft.Automanage": {
- "accounts": [
- "2020-06-30-preview"
- ],
- "configurationProfileAssignments": [
- "2020-06-30-preview",
- "2021-04-30-preview",
- "2022-05-04"
- ],
- "configurationProfilePreferences": [
- "2020-06-30-preview"
- ],
- "configurationProfiles": [
- "2021-04-30-preview",
- "2022-05-04"
- ],
- "configurationProfiles/versions": [
- "2021-04-30-preview",
- "2022-05-04"
- ]
- },
- "Microsoft.Automation": {
- "automationAccounts": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2021-06-22",
- "2022-08-08"
- ],
- "automationAccounts/certificates": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/compilationjobs": [
- "2015-10-31",
- "2018-01-15",
- "2019-06-01",
- "2020-01-13-preview"
- ],
- "automationAccounts/configurations": [
- "2015-10-31",
- "2019-06-01",
- "2022-08-08"
- ],
- "automationAccounts/connections": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/connectionTypes": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/credentials": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/hybridRunbookWorkerGroups": [
- "2021-06-22",
- "2022-02-22",
- "2022-08-08"
- ],
- "automationAccounts/hybridRunbookWorkerGroups/hybridRunbookWorkers": [
- "2021-06-22",
- "2022-08-08"
- ],
- "automationAccounts/jobs": [
- "2015-10-31",
- "2017-05-15-preview",
- "2019-06-01",
- "2022-08-08"
- ],
- "automationAccounts/jobSchedules": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/modules": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/nodeConfigurations": [
- "2015-10-31",
- "2018-01-15",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/privateEndpointConnections": [
- "2020-01-13-preview"
- ],
- "automationAccounts/python2Packages": [
- "2018-06-30",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/python3Packages": [
- "2022-08-08"
- ],
- "automationAccounts/runbooks": [
- "2015-10-31",
- "2018-06-30",
- "2019-06-01",
- "2022-08-08"
- ],
- "automationAccounts/runbooks/draft": [
- "2015-10-31",
- "2018-06-30",
- "2019-06-01",
- "2022-08-08"
- ],
- "automationAccounts/schedules": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/softwareUpdateConfigurations": [
- "2017-05-15-preview",
- "2019-06-01"
- ],
- "automationAccounts/sourceControls": [
- "2017-05-15-preview",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/sourceControls/sourceControlSyncJobs": [
- "2017-05-15-preview",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/variables": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview",
- "2022-08-08"
- ],
- "automationAccounts/watchers": [
- "2015-10-31",
- "2019-06-01",
- "2020-01-13-preview"
- ],
- "automationAccounts/webhooks": [
- "2015-10-31"
- ]
- },
- "Microsoft.AutonomousDevelopmentPlatform": {
- "accounts": [
- "2020-07-01-preview",
- "2021-02-01-preview",
- "2021-11-01-preview"
- ],
- "accounts/dataPools": [
- "2020-07-01-preview",
- "2021-02-01-preview",
- "2021-11-01-preview"
- ]
- },
- "Microsoft.AVS": {
- "privateClouds": [
- "2020-03-20",
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/addons": [
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/authorizations": [
- "2020-03-20",
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/cloudLinks": [
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/clusters": [
- "2020-03-20",
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/clusters/datastores": [
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/clusters/placementPolicies": [
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/globalReachConnections": [
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/hcxEnterpriseSites": [
- "2020-03-20",
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/scriptExecutions": [
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/workloadNetworks/dhcpConfigurations": [
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/workloadNetworks/dnsServices": [
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/workloadNetworks/dnsZones": [
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/workloadNetworks/portMirroringProfiles": [
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/workloadNetworks/publicIPs": [
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/workloadNetworks/segments": [
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ],
- "privateClouds/workloadNetworks/vmGroups": [
- "2020-07-17-preview",
- "2021-01-01-preview",
- "2021-06-01",
- "2021-12-01",
- "2022-05-01"
- ]
- },
- "Microsoft.AzureActiveDirectory": {
- "b2cDirectories": [
- "2019-01-01-preview",
- "2021-04-01"
- ],
- "guestUsages": [
- "2020-05-01-preview",
- "2021-04-01"
- ]
- },
- "Microsoft.AzureArcData": {
- "dataControllers": [
- "2021-06-01-preview",
- "2021-07-01-preview",
- "2021-08-01",
- "2021-11-01",
- "2022-03-01-preview",
- "2022-06-15-preview"
- ],
- "dataControllers/activeDirectoryConnectors": [
- "2022-03-01-preview",
- "2022-06-15-preview"
- ],
- "postgresInstances": [
- "2021-06-01-preview",
- "2021-07-01-preview",
- "2022-03-01-preview",
- "2022-06-15-preview"
- ],
- "sqlManagedInstances": [
- "2021-06-01-preview",
- "2021-07-01-preview",
- "2021-08-01",
- "2021-11-01",
- "2022-03-01-preview",
- "2022-06-15-preview"
- ],
- "sqlServerInstances": [
- "2021-06-01-preview",
- "2021-07-01-preview",
- "2021-08-01",
- "2021-11-01",
- "2022-03-01-preview",
- "2022-06-15-preview"
- ],
- "sqlServerInstances/databases": [
- "2022-06-15-preview"
- ]
- },
- "Microsoft.AzureBridge.Admin": {
- "activations": [
- "2016-01-01"
- ],
- "activations/downloadedProducts": [
- "2016-01-01"
- ]
- },
- "Microsoft.AzureData": {
- "sqlServerRegistrations": [
- "2017-03-01-preview",
- "2019-07-24-preview"
- ],
- "sqlServerRegistrations/sqlServers": [
- "2017-03-01-preview",
- "2019-07-24-preview"
- ]
- },
- "Microsoft.AzureStack": {
- "linkedSubscriptions": [
- "2020-06-01-preview"
- ],
- "registrations": [
- "2016-01-01",
- "2017-06-01",
- "2020-06-01-preview",
- "2022-06-01"
- ],
- "registrations/customerSubscriptions": [
- "2017-06-01",
- "2020-06-01-preview",
- "2022-06-01"
- ]
- },
- "Microsoft.AzureStackHCI": {
- "clusters": [
- "2020-03-01-preview",
- "2020-10-01",
- "2021-01-01-preview",
- "2021-09-01",
- "2021-09-01-preview",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01",
- "2022-09-01",
- "2022-10-01",
- "2022-12-01"
- ],
- "clusters/arcSettings": [
- "2021-01-01-preview",
- "2021-09-01",
- "2021-09-01-preview",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01",
- "2022-09-01",
- "2022-10-01",
- "2022-12-01"
- ],
- "clusters/arcSettings/extensions": [
- "2021-01-01-preview",
- "2021-09-01",
- "2021-09-01-preview",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01",
- "2022-09-01",
- "2022-10-01",
- "2022-12-01"
- ],
- "clusters/updates": [
- "2022-12-01"
- ],
- "clusters/updates/updateRuns": [
- "2022-12-01"
- ],
- "clusters/updateSummaries": [
- "2022-12-01"
- ],
- "galleryimages": [
- "2021-07-01-preview",
- "2021-09-01-preview"
- ],
- "marketplacegalleryimages": [
- "2021-09-01-preview"
- ],
- "networkinterfaces": [
- "2021-07-01-preview",
- "2021-09-01-preview"
- ],
- "storagecontainers": [
- "2021-09-01-preview"
- ],
- "virtualharddisks": [
- "2021-07-01-preview",
- "2021-09-01-preview"
- ],
- "virtualmachines": [
- "2021-07-01-preview",
- "2021-09-01-preview"
- ],
- "virtualMachines/extensions": [
- "2021-09-01-preview"
- ],
- "virtualMachines/guestAgents": [
- "2021-09-01-preview"
- ],
- "virtualMachines/hybridIdentityMetadata": [
- "2021-09-01-preview"
- ],
- "virtualnetworks": [
- "2021-07-01-preview",
- "2021-09-01-preview"
- ]
- },
- "Microsoft.Backup.Admin": {
- "backupLocations": [
- "2018-09-01"
- ]
- },
- "Microsoft.Batch": {
- "batchAccounts": [
- "2015-12-01",
- "2017-01-01",
- "2017-05-01",
- "2017-09-01",
- "2018-12-01",
- "2019-04-01",
- "2019-08-01",
- "2020-03-01",
- "2020-05-01",
- "2020-09-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "batchAccounts/applications": [
- "2015-12-01",
- "2017-01-01",
- "2017-05-01",
- "2017-09-01",
- "2018-12-01",
- "2019-04-01",
- "2019-08-01",
- "2020-03-01",
- "2020-05-01",
- "2020-09-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "batchAccounts/applications/versions": [
- "2015-12-01",
- "2017-01-01",
- "2017-05-01",
- "2017-09-01",
- "2018-12-01",
- "2019-04-01",
- "2019-08-01",
- "2020-03-01",
- "2020-05-01",
- "2020-09-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "batchAccounts/certificates": [
- "2017-09-01",
- "2018-12-01",
- "2019-04-01",
- "2019-08-01",
- "2020-03-01",
- "2020-05-01",
- "2020-09-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "batchAccounts/pools": [
- "2017-09-01",
- "2018-12-01",
- "2019-04-01",
- "2019-08-01",
- "2020-03-01",
- "2020-05-01",
- "2020-09-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ]
- },
- "Microsoft.Billing": {
- "billingAccounts/billingProfiles": [
- "2018-11-01-preview",
- "2019-10-01-preview",
- "2020-05-01"
- ],
- "billingAccounts/billingProfiles/instructions": [
- "2019-10-01-preview",
- "2020-05-01"
- ],
- "billingAccounts/billingProfiles/invoiceSections": [
- "2019-10-01-preview",
- "2020-05-01"
- ],
- "billingAccounts/billingProfiles/policies": [
- "2018-11-01-preview",
- "2019-10-01-preview",
- "2020-05-01"
- ],
- "billingAccounts/billingRoleAssignments": [
- "2019-10-01-preview"
- ],
- "billingAccounts/billingSubscriptionAliases": [
- "2021-10-01"
- ],
- "billingAccounts/customers/policies": [
- "2019-10-01-preview",
- "2020-05-01"
- ],
- "billingAccounts/departments/billingRoleAssignments": [
- "2019-10-01-preview"
- ],
- "billingAccounts/enrollmentAccounts/billingRoleAssignments": [
- "2019-10-01-preview"
- ],
- "billingAccounts/invoiceSections": [
- "2018-11-01-preview"
- ],
- "billingAccounts/lineOfCredit": [
- "2018-11-01-preview"
- ],
- "promotions": [
- "2020-09-01-preview",
- "2020-11-01-preview"
- ]
- },
- "Microsoft.BillingBenefits": {
- "reservationOrderAliases": [
- "2022-11-01"
- ],
- "savingsPlanOrderAliases": [
- "2022-11-01"
- ]
- },
- "Microsoft.Blockchain": {
- "blockchainMembers": [
- "2018-06-01-preview"
- ],
- "blockchainMembers/transactionNodes": [
- "2018-06-01-preview"
- ]
- },
- "Microsoft.Blueprint": {
- "blueprintAssignments": [
- "2017-11-11-preview",
- "2018-11-01-preview"
- ],
- "blueprints": [
- "2017-11-11-preview",
- "2018-11-01-preview"
- ],
- "blueprints/artifacts": [
- "2017-11-11-preview",
- "2018-11-01-preview"
- ],
- "blueprints/versions": [
- "2017-11-11-preview",
- "2018-11-01-preview"
- ]
- },
- "Microsoft.BotService": {
- "botServices": [
- "2017-12-01",
- "2018-07-12",
- "2020-06-02",
- "2021-03-01",
- "2021-05-01-preview",
- "2022-06-15-preview"
- ],
- "botServices/channels": [
- "2017-12-01",
- "2018-07-12",
- "2020-06-02",
- "2021-03-01",
- "2021-05-01-preview",
- "2022-06-15-preview"
- ],
- "botServices/connections": [
- "2017-12-01",
- "2018-07-12",
- "2020-06-02",
- "2021-03-01",
- "2021-05-01-preview",
- "2022-06-15-preview"
- ],
- "botServices/privateEndpointConnections": [
- "2021-05-01-preview",
- "2022-06-15-preview"
- ],
- "enterpriseChannels": [
- "2018-07-12"
- ]
- },
- "Microsoft.Cache": {
- "Redis": [
- "2015-08-01",
- "2016-04-01",
- "2017-02-01",
- "2017-10-01",
- "2018-03-01",
- "2019-07-01",
- "2020-06-01",
- "2020-12-01",
- "2021-06-01",
- "2022-05-01",
- "2022-06-01"
- ],
- "Redis/firewallRules": [
- "2016-04-01",
- "2017-02-01",
- "2017-10-01",
- "2018-03-01",
- "2019-07-01",
- "2020-06-01",
- "2020-12-01",
- "2021-06-01",
- "2022-05-01",
- "2022-06-01"
- ],
- "Redis/linkedServers": [
- "2017-02-01",
- "2017-10-01",
- "2018-03-01",
- "2019-07-01",
- "2020-06-01",
- "2020-12-01",
- "2021-06-01",
- "2022-05-01",
- "2022-06-01"
- ],
- "Redis/patchSchedules": [
- "2016-04-01",
- "2017-02-01",
- "2017-10-01",
- "2018-03-01",
- "2019-07-01",
- "2020-06-01",
- "2020-12-01",
- "2021-06-01",
- "2022-05-01",
- "2022-06-01"
- ],
- "redis/privateEndpointConnections": [
- "2020-06-01",
- "2020-12-01",
- "2021-06-01",
- "2022-05-01",
- "2022-06-01"
- ],
- "redisEnterprise": [
- "2020-10-01-preview",
- "2021-02-01-preview",
- "2021-03-01",
- "2021-08-01",
- "2022-01-01"
- ],
- "redisEnterprise/databases": [
- "2020-10-01-preview",
- "2021-02-01-preview",
- "2021-03-01",
- "2021-08-01",
- "2022-01-01"
- ],
- "redisEnterprise/privateEndpointConnections": [
- "2020-10-01-preview",
- "2021-02-01-preview",
- "2021-03-01",
- "2021-08-01",
- "2022-01-01"
- ]
- },
- "Microsoft.Capacity": {
- "autoQuotaIncrease": [
- "2019-07-19"
- ],
- "reservationOrders": [
- "2019-04-01",
- "2020-10-01-preview",
- "2021-07-01",
- "2022-03-01"
- ],
- "resourceProviders/locations/serviceLimits": [
- "2019-07-19",
- "2020-10-25"
- ]
- },
- "Microsoft.Cdn": {
- "cdnWebApplicationFirewallPolicies": [
- "2019-06-15",
- "2019-06-15-preview",
- "2020-03-31",
- "2020-04-15",
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles": [
- "2015-06-01",
- "2016-04-02",
- "2016-10-02",
- "2017-04-02",
- "2017-10-12",
- "2019-04-15",
- "2019-06-15",
- "2019-06-15-preview",
- "2019-12-31",
- "2020-03-31",
- "2020-04-15",
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/afdEndpoints": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/afdEndpoints/routes": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/customDomains": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/endpoints": [
- "2015-06-01",
- "2016-04-02",
- "2016-10-02",
- "2017-04-02",
- "2017-10-12",
- "2019-04-15",
- "2019-06-15",
- "2019-06-15-preview",
- "2019-12-31",
- "2020-03-31",
- "2020-04-15",
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/endpoints/customDomains": [
- "2015-06-01",
- "2016-04-02",
- "2016-10-02",
- "2017-04-02",
- "2017-10-12",
- "2019-04-15",
- "2019-06-15",
- "2019-06-15-preview",
- "2019-12-31",
- "2020-03-31",
- "2020-04-15",
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/endpoints/originGroups": [
- "2019-12-31",
- "2020-03-31",
- "2020-04-15",
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/endpoints/origins": [
- "2015-06-01",
- "2016-04-02",
- "2019-12-31",
- "2020-03-31",
- "2020-04-15",
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/originGroups": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/originGroups/origins": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/ruleSets": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/ruleSets/rules": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/secrets": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ],
- "profiles/securityPolicies": [
- "2020-09-01",
- "2021-06-01",
- "2022-05-01-preview",
- "2022-11-01-preview"
- ]
- },
- "Microsoft.CertificateRegistration": {
- "certificateOrders": [
- "2015-08-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "certificateOrders/certificates": [
- "2015-08-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ]
- },
- "Microsoft.ChangeAnalysis": {
- "profile": [
- "2020-04-01-preview"
- ]
- },
- "Microsoft.Chaos": {
- "experiments": [
- "2021-09-15-preview",
- "2022-07-01-preview",
- "2022-10-01-preview"
- ],
- "targets": [
- "2021-09-15-preview",
- "2022-07-01-preview",
- "2022-10-01-preview"
- ],
- "targets/capabilities": [
- "2021-09-15-preview",
- "2022-07-01-preview",
- "2022-10-01-preview"
- ]
- },
- "Microsoft.CognitiveServices": {
- "accounts": [
- "2016-02-01-preview",
- "2017-04-18",
- "2021-04-30",
- "2021-10-01",
- "2022-03-01",
- "2022-10-01",
- "2022-12-01"
- ],
- "accounts/commitmentPlans": [
- "2021-10-01",
- "2022-03-01",
- "2022-10-01",
- "2022-12-01"
- ],
- "accounts/deployments": [
- "2021-10-01",
- "2022-03-01",
- "2022-10-01",
- "2022-12-01"
- ],
- "accounts/privateEndpointConnections": [
- "2017-04-18",
- "2021-04-30",
- "2021-10-01",
- "2022-03-01",
- "2022-10-01",
- "2022-12-01"
- ],
- "commitmentPlans": [
- "2022-12-01"
- ],
- "commitmentPlans/accountAssociations": [
- "2022-12-01"
- ]
- },
- "Microsoft.Communication": {
- "communicationServices": [
- "2020-08-20",
- "2020-08-20-preview",
- "2021-10-01-preview",
- "2022-07-01-preview"
- ],
- "emailServices": [
- "2021-10-01-preview",
- "2022-07-01-preview"
- ],
- "emailServices/domains": [
- "2021-10-01-preview",
- "2022-07-01-preview"
- ]
- },
- "Microsoft.Compute": {
- "availabilitySets": [
- "2015-06-15",
- "2016-03-30",
- "2016-04-30-preview",
- "2017-03-30",
- "2017-12-01",
- "2018-04-01",
- "2018-06-01",
- "2018-10-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "capacityReservationGroups": [
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "capacityReservationGroups/capacityReservations": [
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "cloudServices": [
- "2020-10-01-preview",
- "2021-03-01",
- "2022-04-04",
- "2022-09-04"
- ],
- "cloudServices/updateDomains": [
- "2020-10-01-preview",
- "2021-03-01",
- "2022-04-04",
- "2022-09-04"
- ],
- "diskAccesses": [
- "2020-05-01",
- "2020-06-30",
- "2020-09-30",
- "2020-12-01",
- "2021-04-01",
- "2021-08-01",
- "2021-12-01",
- "2022-03-02",
- "2022-07-02"
- ],
- "diskAccesses/privateEndpointConnections": [
- "2020-09-30",
- "2020-12-01",
- "2021-04-01",
- "2021-08-01",
- "2021-12-01",
- "2022-03-02",
- "2022-07-02"
- ],
- "diskEncryptionSets": [
- "2019-07-01",
- "2019-11-01",
- "2020-05-01",
- "2020-06-30",
- "2020-09-30",
- "2020-12-01",
- "2021-04-01",
- "2021-08-01",
- "2021-12-01",
- "2022-03-02",
- "2022-07-02"
- ],
- "disks": [
- "2016-04-30-preview",
- "2017-03-30",
- "2018-04-01",
- "2018-06-01",
- "2018-09-30",
- "2019-03-01",
- "2019-07-01",
- "2019-11-01",
- "2020-05-01",
- "2020-06-30",
- "2020-09-30",
- "2020-12-01",
- "2021-04-01",
- "2021-08-01",
- "2021-12-01",
- "2022-03-02",
- "2022-07-02"
- ],
- "galleries": [
- "2018-06-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-09-30",
- "2021-07-01",
- "2021-10-01",
- "2022-01-03",
- "2022-03-03"
- ],
- "galleries/applications": [
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-09-30",
- "2021-07-01",
- "2021-10-01",
- "2022-01-03",
- "2022-03-03"
- ],
- "galleries/applications/versions": [
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-09-30",
- "2021-07-01",
- "2021-10-01",
- "2022-01-03",
- "2022-03-03"
- ],
- "galleries/images": [
- "2018-06-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-09-30",
- "2021-07-01",
- "2021-10-01",
- "2022-01-03",
- "2022-03-03"
- ],
- "galleries/images/versions": [
- "2018-06-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-09-30",
- "2021-07-01",
- "2021-10-01",
- "2022-01-03",
- "2022-03-03"
- ],
- "hostGroups": [
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "hostGroups/hosts": [
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "images": [
- "2016-04-30-preview",
- "2017-03-30",
- "2017-12-01",
- "2018-04-01",
- "2018-06-01",
- "2018-10-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "proximityPlacementGroups": [
- "2018-04-01",
- "2018-06-01",
- "2018-10-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "restorePointCollections": [
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "restorePointCollections/restorePoints": [
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "snapshots": [
- "2016-04-30-preview",
- "2017-03-30",
- "2018-04-01",
- "2018-06-01",
- "2018-09-30",
- "2019-03-01",
- "2019-07-01",
- "2019-11-01",
- "2020-05-01",
- "2020-06-30",
- "2020-09-30",
- "2020-12-01",
- "2021-04-01",
- "2021-08-01",
- "2021-12-01",
- "2022-03-02",
- "2022-07-02"
- ],
- "sshPublicKeys": [
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "virtualMachines": [
- "2015-06-15",
- "2016-03-30",
- "2016-04-30-preview",
- "2017-03-30",
- "2017-12-01",
- "2018-04-01",
- "2018-06-01",
- "2018-10-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "virtualMachines/extensions": [
- "2015-06-15",
- "2016-03-30",
- "2016-04-30-preview",
- "2017-03-30",
- "2017-12-01",
- "2018-04-01",
- "2018-06-01",
- "2018-10-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "virtualMachines/runCommands": [
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "virtualMachineScaleSets": [
- "2015-06-15",
- "2016-03-30",
- "2016-04-30-preview",
- "2017-03-30",
- "2017-12-01",
- "2018-04-01",
- "2018-06-01",
- "2018-10-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "virtualMachineScaleSets/extensions": [
- "2017-03-30",
- "2017-12-01",
- "2018-04-01",
- "2018-06-01",
- "2018-10-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "virtualMachineScaleSets/virtualmachines": [
- "2017-12-01",
- "2018-04-01",
- "2018-06-01",
- "2018-10-01",
- "2019-03-01",
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "virtualMachineScaleSets/virtualMachines/extensions": [
- "2019-07-01",
- "2019-12-01",
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ],
- "virtualMachineScaleSets/virtualMachines/runCommands": [
- "2020-06-01",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01",
- "2021-07-01",
- "2021-11-01",
- "2022-03-01",
- "2022-08-01"
- ]
- },
- "Microsoft.Compute.Admin": {
- "locations/artifactTypes/publishers/offers/skus/versions": [
- "2015-12-01-preview"
- ],
- "locations/artifactTypes/publishers/types/versions": [
- "2015-12-01-preview"
- ],
- "locations/diskmigrationjobs": [
- "2018-07-30-preview",
- "2021-04-01",
- "2021-09-01"
- ],
- "locations/quotas": [
- "2015-12-01-preview",
- "2018-02-09",
- "2021-01-01"
- ]
- },
- "Microsoft.ConfidentialLedger": {
- "ledgers": [
- "2020-12-01-preview",
- "2021-05-13-preview",
- "2022-05-13",
- "2022-09-08-preview"
- ],
- "managedCCFs": [
- "2022-09-08-preview"
- ]
- },
- "Microsoft.Confluent": {
- "agreements": [
- "2020-03-01",
- "2020-03-01-preview",
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-12-01"
- ],
- "organizations": [
- "2020-03-01",
- "2020-03-01-preview",
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-12-01"
- ]
- },
- "Microsoft.ConnectedVMwarevSphere": {
- "clusters": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "datastores": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "hosts": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "resourcePools": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "vcenters": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "vcenters/inventoryItems": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "virtualMachines": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "virtualMachines/extensions": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "virtualMachines/guestAgents": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "virtualMachines/hybridIdentityMetadata": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "virtualMachineTemplates": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ],
- "virtualNetworks": [
- "2020-10-01-preview",
- "2022-01-10-preview",
- "2022-07-15-preview"
- ]
- },
- "Microsoft.Consumption": {
- "budgets": [
- "2017-12-30-preview",
- "2018-01-31",
- "2018-03-31",
- "2018-06-30",
- "2018-08-31",
- "2018-10-01",
- "2019-01-01",
- "2019-04-01-preview",
- "2019-05-01",
- "2019-05-01-preview",
- "2019-06-01",
- "2019-10-01",
- "2019-11-01",
- "2021-05-01",
- "2021-10-01"
- ],
- "costTags": [
- "2018-03-31",
- "2018-06-30"
- ]
- },
- "Microsoft.ContainerInstance": {
- "containerGroups": [
- "2017-08-01-preview",
- "2017-10-01-preview",
- "2017-12-01-preview",
- "2018-02-01-preview",
- "2018-04-01",
- "2018-06-01",
- "2018-09-01",
- "2018-10-01",
- "2019-12-01",
- "2020-11-01",
- "2021-03-01",
- "2021-07-01",
- "2021-09-01",
- "2021-10-01",
- "2022-09-01",
- "2022-10-01-preview"
- ]
- },
- "Microsoft.ContainerRegistry": {
- "registries": [
- "2016-06-27-preview",
- "2017-03-01",
- "2017-06-01-preview",
- "2017-10-01",
- "2019-05-01",
- "2019-12-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-09-01",
- "2021-12-01-preview",
- "2022-02-01-preview",
- "2022-12-01"
- ],
- "registries/agentPools": [
- "2019-06-01-preview"
- ],
- "registries/buildTasks": [
- "2018-02-01-preview"
- ],
- "registries/buildTasks/steps": [
- "2018-02-01-preview"
- ],
- "registries/connectedRegistries": [
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-12-01-preview",
- "2022-02-01-preview"
- ],
- "registries/exportPipelines": [
- "2019-12-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-12-01-preview",
- "2022-02-01-preview"
- ],
- "registries/importPipelines": [
- "2019-12-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-12-01-preview",
- "2022-02-01-preview"
- ],
- "registries/pipelineRuns": [
- "2019-12-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-12-01-preview",
- "2022-02-01-preview"
- ],
- "registries/privateEndpointConnections": [
- "2019-12-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-09-01",
- "2021-12-01-preview",
- "2022-02-01-preview",
- "2022-12-01"
- ],
- "registries/replications": [
- "2017-06-01-preview",
- "2017-10-01",
- "2019-05-01",
- "2019-12-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-09-01",
- "2021-12-01-preview",
- "2022-02-01-preview",
- "2022-12-01"
- ],
- "registries/scopeMaps": [
- "2019-05-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-12-01-preview",
- "2022-02-01-preview",
- "2022-12-01"
- ],
- "registries/taskRuns": [
- "2019-06-01-preview"
- ],
- "registries/tasks": [
- "2018-09-01",
- "2019-04-01",
- "2019-06-01-preview"
- ],
- "registries/tokens": [
- "2019-05-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-12-01-preview",
- "2022-02-01-preview",
- "2022-12-01"
- ],
- "registries/webhooks": [
- "2017-06-01-preview",
- "2017-10-01",
- "2019-05-01",
- "2019-12-01-preview",
- "2020-11-01-preview",
- "2021-06-01-preview",
- "2021-08-01-preview",
- "2021-09-01",
- "2021-12-01-preview",
- "2022-02-01-preview",
- "2022-12-01"
- ]
- },
- "Microsoft.ContainerRegistry.Admin": {
- "locations/configurations": [
- "2019-11-01-preview"
- ],
- "locations/quotas": [
- "2019-11-01-preview"
- ]
- },
- "Microsoft.ContainerService": {
- "containerServices": [
- "2015-11-01-preview",
- "2016-03-30",
- "2016-09-30",
- "2017-01-31",
- "2017-07-01"
- ],
- "fleets": [
- "2022-06-02-preview",
- "2022-07-02-preview",
- "2022-09-02-preview"
- ],
- "fleets/members": [
- "2022-06-02-preview",
- "2022-07-02-preview",
- "2022-09-02-preview"
- ],
- "managedClusters": [
- "2017-08-31",
- "2018-03-31",
- "2018-08-01-preview",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-08-01",
- "2019-10-01",
- "2019-11-01",
- "2020-01-01",
- "2020-02-01",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01",
- "2020-07-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-07-01",
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-01-02-preview",
- "2022-02-01",
- "2022-02-02-preview",
- "2022-03-01",
- "2022-03-02-preview",
- "2022-04-01",
- "2022-04-02-preview",
- "2022-05-02-preview",
- "2022-06-01",
- "2022-06-02-preview",
- "2022-07-01",
- "2022-07-02-preview",
- "2022-08-02-preview",
- "2022-08-03-preview",
- "2022-09-01",
- "2022-09-02-preview",
- "2022-10-02-preview"
- ],
- "managedClusters/agentPools": [
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-08-01",
- "2019-10-01",
- "2019-11-01",
- "2020-01-01",
- "2020-02-01",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01",
- "2020-07-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-07-01",
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-01-02-preview",
- "2022-02-01",
- "2022-02-02-preview",
- "2022-03-01",
- "2022-03-02-preview",
- "2022-04-01",
- "2022-04-02-preview",
- "2022-05-02-preview",
- "2022-06-01",
- "2022-06-02-preview",
- "2022-07-01",
- "2022-07-02-preview",
- "2022-08-02-preview",
- "2022-08-03-preview",
- "2022-09-01",
- "2022-09-02-preview",
- "2022-10-02-preview"
- ],
- "managedClusters/maintenanceConfigurations": [
- "2020-12-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-07-01",
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-01-02-preview",
- "2022-02-01",
- "2022-02-02-preview",
- "2022-03-01",
- "2022-03-02-preview",
- "2022-04-01",
- "2022-04-02-preview",
- "2022-05-02-preview",
- "2022-06-01",
- "2022-06-02-preview",
- "2022-07-01",
- "2022-07-02-preview",
- "2022-08-02-preview",
- "2022-08-03-preview",
- "2022-09-01",
- "2022-09-02-preview",
- "2022-10-02-preview"
- ],
- "managedClusters/privateEndpointConnections": [
- "2020-06-01",
- "2020-07-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-07-01",
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-01-02-preview",
- "2022-02-01",
- "2022-02-02-preview",
- "2022-03-01",
- "2022-03-02-preview",
- "2022-04-01",
- "2022-04-02-preview",
- "2022-05-02-preview",
- "2022-06-01",
- "2022-06-02-preview",
- "2022-07-01",
- "2022-07-02-preview",
- "2022-08-02-preview",
- "2022-08-03-preview",
- "2022-09-01",
- "2022-09-02-preview",
- "2022-10-02-preview"
- ],
- "managedClusters/trustedAccessRoleBindings": [
- "2022-04-02-preview",
- "2022-05-02-preview",
- "2022-06-02-preview",
- "2022-07-02-preview",
- "2022-08-02-preview",
- "2022-08-03-preview",
- "2022-09-02-preview",
- "2022-10-02-preview"
- ],
- "managedclustersnapshots": [
- "2022-02-02-preview",
- "2022-03-02-preview",
- "2022-04-02-preview",
- "2022-05-02-preview",
- "2022-06-02-preview",
- "2022-07-02-preview",
- "2022-08-02-preview",
- "2022-08-03-preview",
- "2022-09-02-preview",
- "2022-10-02-preview"
- ],
- "openShiftManagedClusters": [
- "2018-09-30-preview",
- "2019-04-30",
- "2019-09-30",
- "2019-10-27-preview"
- ],
- "snapshots": [
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-01-02-preview",
- "2022-02-01",
- "2022-02-02-preview",
- "2022-03-01",
- "2022-03-02-preview",
- "2022-04-01",
- "2022-04-02-preview",
- "2022-05-02-preview",
- "2022-06-01",
- "2022-06-02-preview",
- "2022-07-01",
- "2022-07-02-preview",
- "2022-08-02-preview",
- "2022-08-03-preview",
- "2022-09-01",
- "2022-09-02-preview",
- "2022-10-02-preview"
- ]
- },
- "Microsoft.CostManagement": {
- "budgets": [
- "2019-04-01-preview"
- ],
- "cloudConnectors": [
- "2019-03-01-preview"
- ],
- "connectors": [
- "2018-08-01-preview"
- ],
- "costAllocationRules": [
- "2020-03-01-preview"
- ],
- "exports": [
- "2019-01-01",
- "2019-09-01",
- "2019-10-01",
- "2019-11-01",
- "2020-06-01",
- "2020-12-01-preview",
- "2021-01-01",
- "2021-10-01",
- "2022-10-01"
- ],
- "externalSubscriptions": [
- "2019-03-01-preview"
- ],
- "markupRules": [
- "2022-10-05-preview"
- ],
- "reportconfigs": [
- "2018-05-31"
- ],
- "reports": [
- "2018-08-01-preview"
- ],
- "scheduledActions": [
- "2022-04-01-preview",
- "2022-06-01-preview",
- "2022-10-01"
- ],
- "settings": [
- "2019-11-01",
- "2022-10-01-preview",
- "2022-10-05-preview"
- ],
- "showbackRules": [
- "2019-03-01-preview"
- ],
- "views": [
- "2019-04-01-preview",
- "2019-11-01",
- "2020-06-01",
- "2021-10-01",
- "2022-08-01-preview",
- "2022-10-01",
- "2022-10-01-preview",
- "2022-10-05-preview"
- ]
- },
- "Microsoft.CustomerInsights": {
- "hubs": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/authorizationPolicies": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/connectors": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/connectors/mappings": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/interactions": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/kpi": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/links": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/predictions": [
- "2017-04-26"
- ],
- "hubs/profiles": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/relationshipLinks": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/relationships": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/roleAssignments": [
- "2017-01-01",
- "2017-04-26"
- ],
- "hubs/views": [
- "2017-01-01",
- "2017-04-26"
- ]
- },
- "Microsoft.CustomProviders": {
- "associations": [
- "2018-09-01-preview"
- ],
- "resourceProviders": [
- "2018-09-01-preview"
- ]
- },
- "Microsoft.Dashboard": {
- "grafana": [
- "2021-09-01-preview",
- "2022-05-01-preview",
- "2022-08-01"
- ],
- "grafana/privateEndpointConnections": [
- "2022-05-01-preview",
- "2022-08-01"
- ]
- },
- "Microsoft.DataBox": {
- "jobs": [
- "2018-01-01",
- "2019-09-01",
- "2020-04-01",
- "2020-11-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01-preview",
- "2021-12-01",
- "2022-02-01",
- "2022-09-01"
- ]
- },
- "Microsoft.DataBoxEdge": {
- "dataBoxEdgeDevices": [
- "2019-03-01",
- "2019-07-01",
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/bandwidthSchedules": [
- "2019-03-01",
- "2019-07-01",
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/diagnosticProactiveLogCollectionSettings": [
- "2021-02-01",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/diagnosticRemoteSupportSettings": [
- "2021-02-01",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/orders": [
- "2019-03-01",
- "2019-07-01",
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/roles": [
- "2019-03-01",
- "2019-07-01",
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/roles/addons": [
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/roles/monitoringConfig": [
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/shares": [
- "2019-03-01",
- "2019-07-01",
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/storageAccountCredentials": [
- "2019-03-01",
- "2019-07-01",
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/storageAccounts": [
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/storageAccounts/containers": [
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/triggers": [
- "2019-03-01",
- "2019-07-01",
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ],
- "dataBoxEdgeDevices/users": [
- "2019-03-01",
- "2019-07-01",
- "2019-08-01",
- "2020-05-01-preview",
- "2020-09-01",
- "2020-09-01-preview",
- "2020-12-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-03-01",
- "2022-04-01-preview",
- "2022-12-01-preview"
- ]
- },
- "Microsoft.Databricks": {
- "accessConnectors": [
- "2022-04-01-preview"
- ],
- "workspaces": [
- "2018-04-01",
- "2021-04-01-preview",
- "2022-04-01-preview"
- ],
- "workspaces/privateEndpointConnections": [
- "2021-04-01-preview",
- "2022-04-01-preview"
- ],
- "workspaces/virtualNetworkPeerings": [
- "2018-04-01",
- "2021-04-01-preview",
- "2022-04-01-preview"
- ]
- },
- "Microsoft.DataCatalog": {
- "catalogs": [
- "2016-03-30"
- ]
- },
- "Microsoft.Datadog": {
- "agreements": [
- "2020-02-01-preview",
- "2021-03-01",
- "2022-06-01"
- ],
- "monitors": [
- "2020-02-01-preview",
- "2021-03-01",
- "2022-06-01"
- ],
- "monitors/singleSignOnConfigurations": [
- "2020-02-01-preview",
- "2021-03-01",
- "2022-06-01"
- ],
- "monitors/tagRules": [
- "2020-02-01-preview",
- "2021-03-01",
- "2022-06-01"
- ]
- },
- "Microsoft.DataFactory": {
- "factories": [
- "2017-09-01-preview",
- "2018-06-01"
- ],
- "factories/credentials": [
- "2018-06-01"
- ],
- "factories/dataflows": [
- "2018-06-01"
- ],
- "factories/datasets": [
- "2017-09-01-preview",
- "2018-06-01"
- ],
- "factories/globalParameters": [
- "2018-06-01"
- ],
- "factories/integrationRuntimes": [
- "2017-09-01-preview",
- "2018-06-01"
- ],
- "factories/linkedservices": [
- "2017-09-01-preview",
- "2018-06-01"
- ],
- "factories/managedVirtualNetworks": [
- "2018-06-01"
- ],
- "factories/managedVirtualNetworks/managedPrivateEndpoints": [
- "2018-06-01"
- ],
- "factories/pipelines": [
- "2017-09-01-preview",
- "2018-06-01"
- ],
- "factories/privateEndpointConnections": [
- "2018-06-01"
- ],
- "factories/triggers": [
- "2017-09-01-preview",
- "2018-06-01"
- ]
- },
- "Microsoft.DataLakeAnalytics": {
- "accounts": [
- "2015-10-01-preview",
- "2016-11-01",
- "2019-11-01-preview"
- ],
- "accounts/computePolicies": [
- "2015-10-01-preview",
- "2016-11-01",
- "2019-11-01-preview"
- ],
- "accounts/dataLakeStoreAccounts": [
- "2015-10-01-preview",
- "2016-11-01",
- "2019-11-01-preview"
- ],
- "accounts/firewallRules": [
- "2015-10-01-preview",
- "2016-11-01",
- "2019-11-01-preview"
- ],
- "accounts/storageAccounts": [
- "2015-10-01-preview",
- "2016-11-01",
- "2019-11-01-preview"
- ]
- },
- "Microsoft.DataLakeStore": {
- "accounts": [
- "2015-10-01-preview",
- "2016-11-01"
- ],
- "accounts/firewallRules": [
- "2015-10-01-preview",
- "2016-11-01"
- ],
- "accounts/trustedIdProviders": [
- "2016-11-01"
- ],
- "accounts/virtualNetworkRules": [
- "2016-11-01"
- ]
- },
- "Microsoft.DataMigration": {
- "databaseMigrations": [
- "2021-10-30-preview",
- "2022-01-30-preview",
- "2022-03-30-preview"
- ],
- "services": [
- "2017-11-15-preview",
- "2018-03-15-preview",
- "2018-03-31-preview",
- "2018-04-19",
- "2018-07-15-preview",
- "2021-06-30",
- "2021-10-30-preview",
- "2022-01-30-preview",
- "2022-03-30-preview"
- ],
- "services/projects": [
- "2017-11-15-preview",
- "2018-03-15-preview",
- "2018-03-31-preview",
- "2018-04-19",
- "2018-07-15-preview",
- "2021-06-30",
- "2021-10-30-preview",
- "2022-01-30-preview",
- "2022-03-30-preview"
- ],
- "services/projects/files": [
- "2018-07-15-preview",
- "2021-06-30",
- "2021-10-30-preview",
- "2022-01-30-preview",
- "2022-03-30-preview"
- ],
- "services/projects/tasks": [
- "2017-11-15-preview",
- "2018-03-15-preview",
- "2018-03-31-preview",
- "2018-04-19",
- "2018-07-15-preview",
- "2021-06-30",
- "2021-10-30-preview",
- "2022-01-30-preview",
- "2022-03-30-preview"
- ],
- "services/serviceTasks": [
- "2018-07-15-preview",
- "2021-06-30",
- "2021-10-30-preview",
- "2022-01-30-preview",
- "2022-03-30-preview"
- ],
- "sqlMigrationServices": [
- "2021-10-30-preview",
- "2022-01-30-preview",
- "2022-03-30-preview"
- ]
- },
- "Microsoft.DataProtection": {
- "backupVaults": [
- "2021-01-01",
- "2021-02-01-preview",
- "2021-06-01-preview",
- "2021-07-01",
- "2021-10-01-preview",
- "2021-12-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-03-01",
- "2022-03-31-preview",
- "2022-04-01",
- "2022-05-01",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview"
- ],
- "backupVaults/backupInstances": [
- "2021-01-01",
- "2021-02-01-preview",
- "2021-06-01-preview",
- "2021-07-01",
- "2021-10-01-preview",
- "2021-12-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-03-01",
- "2022-03-31-preview",
- "2022-04-01",
- "2022-05-01",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview"
- ],
- "backupVaults/backupPolicies": [
- "2021-01-01",
- "2021-02-01-preview",
- "2021-06-01-preview",
- "2021-07-01",
- "2021-10-01-preview",
- "2021-12-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-03-01",
- "2022-03-31-preview",
- "2022-04-01",
- "2022-05-01",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview"
- ],
- "backupVaults/backupResourceGuardProxies": [
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview"
- ],
- "resourceGuards": [
- "2021-07-01",
- "2021-10-01-preview",
- "2021-12-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-03-01",
- "2022-03-31-preview",
- "2022-04-01",
- "2022-05-01",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview"
- ]
- },
- "Microsoft.DataShare": {
- "accounts": [
- "2018-11-01-preview",
- "2019-11-01",
- "2020-09-01",
- "2020-10-01-preview",
- "2021-08-01"
- ],
- "accounts/shares": [
- "2018-11-01-preview",
- "2019-11-01",
- "2020-09-01",
- "2020-10-01-preview",
- "2021-08-01"
- ],
- "accounts/shares/dataSets": [
- "2018-11-01-preview",
- "2019-11-01",
- "2020-09-01",
- "2020-10-01-preview",
- "2021-08-01"
- ],
- "accounts/shares/invitations": [
- "2018-11-01-preview",
- "2019-11-01",
- "2020-09-01",
- "2020-10-01-preview",
- "2021-08-01"
- ],
- "accounts/shares/synchronizationSettings": [
- "2018-11-01-preview",
- "2019-11-01",
- "2020-09-01",
- "2020-10-01-preview",
- "2021-08-01"
- ],
- "accounts/shareSubscriptions": [
- "2018-11-01-preview",
- "2019-11-01",
- "2020-09-01",
- "2020-10-01-preview",
- "2021-08-01"
- ],
- "accounts/shareSubscriptions/dataSetMappings": [
- "2018-11-01-preview",
- "2019-11-01",
- "2020-09-01",
- "2020-10-01-preview",
- "2021-08-01"
- ],
- "accounts/shareSubscriptions/triggers": [
- "2018-11-01-preview",
- "2019-11-01",
- "2020-09-01",
- "2020-10-01-preview",
- "2021-08-01"
- ]
- },
- "Microsoft.DBforMariaDB": {
- "servers": [
- "2018-06-01",
- "2018-06-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/configurations": [
- "2018-06-01",
- "2018-06-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/databases": [
- "2018-06-01",
- "2018-06-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/firewallRules": [
- "2018-06-01",
- "2018-06-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/keys": [
- "2020-01-01-privatepreview"
- ],
- "servers/privateEndpointConnections": [
- "2018-06-01",
- "2018-06-01-privatepreview"
- ],
- "servers/securityAlertPolicies": [
- "2018-06-01",
- "2018-06-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/virtualNetworkRules": [
- "2018-06-01",
- "2018-06-01-preview",
- "2018-06-01-privatepreview"
- ]
- },
- "Microsoft.DBForMySql": {
- "flexibleServers": [
- "2020-07-01-preview",
- "2020-07-01-privatepreview",
- "2021-05-01",
- "2021-05-01-preview",
- "2021-12-01-preview"
- ],
- "flexibleServers/administrators": [
- "2021-12-01-preview"
- ],
- "flexibleServers/backups": [
- "2021-12-01-preview"
- ],
- "flexibleServers/databases": [
- "2020-07-01-preview",
- "2020-07-01-privatepreview",
- "2021-05-01",
- "2021-05-01-preview",
- "2021-12-01-preview"
- ],
- "flexibleServers/firewallRules": [
- "2020-07-01-preview",
- "2020-07-01-privatepreview",
- "2021-05-01",
- "2021-05-01-preview",
- "2021-12-01-preview"
- ],
- "flexibleServers/keys": [
- "2020-07-01-preview",
- "2020-07-01-privatepreview"
- ],
- "servers": [
- "2017-12-01",
- "2017-12-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/administrators": [
- "2017-12-01",
- "2017-12-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/configurations": [
- "2017-12-01",
- "2017-12-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/databases": [
- "2017-12-01",
- "2017-12-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/firewallRules": [
- "2017-12-01",
- "2017-12-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/keys": [
- "2020-01-01",
- "2020-01-01-privatepreview"
- ],
- "servers/privateEndpointConnections": [
- "2018-06-01",
- "2018-06-01-privatepreview"
- ],
- "servers/securityAlertPolicies": [
- "2017-12-01",
- "2017-12-01-preview",
- "2018-06-01-privatepreview"
- ],
- "servers/virtualNetworkRules": [
- "2017-12-01",
- "2017-12-01-preview",
- "2018-06-01-privatepreview"
- ]
- },
- "Microsoft.DBforPostgreSQL": {
- "flexibleServers": [
- "2020-02-14-preview",
- "2020-02-14-privatepreview",
- "2021-04-10-privatepreview",
- "2021-06-01",
- "2021-06-01-preview",
- "2021-06-15-privatepreview",
- "2022-01-20-preview",
- "2022-03-08-preview",
- "2022-12-01"
- ],
- "flexibleServers/administrators": [
- "2022-03-08-preview",
- "2022-12-01"
- ],
- "flexibleServers/configurations": [
- "2021-06-01",
- "2021-06-01-preview",
- "2021-06-15-privatepreview",
- "2022-01-20-preview",
- "2022-03-08-preview",
- "2022-12-01"
- ],
- "flexibleServers/databases": [
- "2020-11-05-preview",
- "2021-06-01",
- "2021-06-01-preview",
- "2022-01-20-preview",
- "2022-03-08-preview",
- "2022-12-01"
- ],
- "flexibleServers/firewallRules": [
- "2020-02-14-preview",
- "2020-02-14-privatepreview",
- "2021-04-10-privatepreview",
- "2021-06-01",
- "2021-06-01-preview",
- "2021-06-15-privatepreview",
- "2022-01-20-preview",
- "2022-03-08-preview",
- "2022-12-01"
- ],
- "flexibleServers/keys": [
- "2020-02-14-privatepreview"
- ],
- "flexibleServers/migrations": [
- "2021-06-15-privatepreview"
- ],
- "serverGroupsv2": [
- "2020-10-05-privatepreview"
- ],
- "serverGroupsv2/firewallRules": [
- "2020-10-05-privatepreview"
- ],
- "serverGroupsv2/roles": [
- "2020-10-05-privatepreview"
- ],
- "servers": [
- "2017-12-01",
- "2017-12-01-preview"
- ],
- "servers/administrators": [
- "2017-12-01",
- "2017-12-01-preview"
- ],
- "servers/configurations": [
- "2017-12-01",
- "2017-12-01-preview"
- ],
- "servers/databases": [
- "2017-12-01",
- "2017-12-01-preview"
- ],
- "servers/firewallRules": [
- "2017-12-01",
- "2017-12-01-preview"
- ],
- "servers/keys": [
- "2020-01-01",
- "2020-01-01-privatepreview"
- ],
- "servers/privateEndpointConnections": [
- "2018-06-01",
- "2018-06-01-privatepreview"
- ],
- "servers/securityAlertPolicies": [
- "2017-12-01",
- "2017-12-01-preview"
- ],
- "servers/virtualNetworkRules": [
- "2017-12-01",
- "2017-12-01-preview"
- ]
- },
- "Microsoft.DelegatedNetwork": {
- "controller": [
- "2020-08-08-preview",
- "2021-03-15"
- ],
- "delegatedSubnets": [
- "2020-08-08-preview",
- "2021-03-15"
- ],
- "orchestrators": [
- "2020-08-08-preview",
- "2021-03-15"
- ]
- },
- "Microsoft.Deployment.Admin": {
- "locations/fileContainers": [
- "2018-07-01",
- "2019-01-01"
- ],
- "locations/productPackages": [
- "2018-07-01",
- "2019-01-01"
- ]
- },
- "Microsoft.DeploymentManager": {
- "artifactSources": [
- "2018-09-01-preview",
- "2019-11-01-preview"
- ],
- "rollouts": [
- "2018-09-01-preview",
- "2019-11-01-preview"
- ],
- "serviceTopologies": [
- "2018-09-01-preview",
- "2019-11-01-preview"
- ],
- "serviceTopologies/services": [
- "2018-09-01-preview",
- "2019-11-01-preview"
- ],
- "serviceTopologies/services/serviceUnits": [
- "2018-09-01-preview",
- "2019-11-01-preview"
- ],
- "steps": [
- "2018-09-01-preview",
- "2019-11-01-preview"
- ]
- },
- "Microsoft.DesktopVirtualization": {
- "applicationGroups": [
- "2019-01-23-preview",
- "2019-09-24-preview",
- "2019-12-10-preview",
- "2020-09-21-preview",
- "2020-10-19-preview",
- "2020-11-02-preview",
- "2020-11-10-preview",
- "2021-01-14-preview",
- "2021-02-01-preview",
- "2021-03-09-preview",
- "2021-04-01-preview",
- "2021-07-12",
- "2021-09-03-preview",
- "2022-02-10-preview",
- "2022-04-01-preview",
- "2022-09-09",
- "2022-10-14-preview"
- ],
- "applicationGroups/applications": [
- "2019-01-23-preview",
- "2019-09-24-preview",
- "2019-12-10-preview",
- "2020-09-21-preview",
- "2020-10-19-preview",
- "2020-11-02-preview",
- "2020-11-10-preview",
- "2021-01-14-preview",
- "2021-02-01-preview",
- "2021-03-09-preview",
- "2021-04-01-preview",
- "2021-07-12",
- "2021-09-03-preview",
- "2022-02-10-preview",
- "2022-04-01-preview",
- "2022-09-09",
- "2022-10-14-preview"
- ],
- "hostPools": [
- "2019-01-23-preview",
- "2019-09-24-preview",
- "2019-12-10-preview",
- "2020-09-21-preview",
- "2020-10-19-preview",
- "2020-11-02-preview",
- "2020-11-10-preview",
- "2021-01-14-preview",
- "2021-02-01-preview",
- "2021-03-09-preview",
- "2021-04-01-preview",
- "2021-07-12",
- "2021-09-03-preview",
- "2022-02-10-preview",
- "2022-04-01-preview",
- "2022-09-09",
- "2022-10-14-preview"
- ],
- "hostPools/msixPackages": [
- "2020-09-21-preview",
- "2020-10-19-preview",
- "2020-11-02-preview",
- "2020-11-10-preview",
- "2021-01-14-preview",
- "2021-02-01-preview",
- "2021-03-09-preview",
- "2021-04-01-preview",
- "2021-07-12",
- "2021-09-03-preview",
- "2022-02-10-preview",
- "2022-04-01-preview",
- "2022-09-09",
- "2022-10-14-preview"
- ],
- "hostPools/privateEndpointConnections": [
- "2021-04-01-preview",
- "2021-09-03-preview",
- "2022-02-10-preview",
- "2022-04-01-preview",
- "2022-10-14-preview"
- ],
- "scalingPlans": [
- "2020-11-10-preview",
- "2021-01-14-preview",
- "2021-02-01-preview",
- "2021-03-09-preview",
- "2021-04-01-preview",
- "2021-07-12",
- "2021-09-03-preview",
- "2022-02-10-preview",
- "2022-04-01-preview",
- "2022-09-09",
- "2022-10-14-preview"
- ],
- "scalingPlans/pooledSchedules": [
- "2022-04-01-preview",
- "2022-09-09",
- "2022-10-14-preview"
- ],
- "workspaces": [
- "2019-01-23-preview",
- "2019-09-24-preview",
- "2019-12-10-preview",
- "2020-09-21-preview",
- "2020-10-19-preview",
- "2020-11-02-preview",
- "2020-11-10-preview",
- "2021-01-14-preview",
- "2021-02-01-preview",
- "2021-03-09-preview",
- "2021-04-01-preview",
- "2021-07-12",
- "2021-09-03-preview",
- "2022-02-10-preview",
- "2022-04-01-preview",
- "2022-09-09",
- "2022-10-14-preview"
- ],
- "workspaces/privateEndpointConnections": [
- "2021-04-01-preview",
- "2021-09-03-preview",
- "2022-02-10-preview",
- "2022-04-01-preview",
- "2022-10-14-preview"
- ]
- },
- "Microsoft.DevCenter": {
- "devcenters": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "devcenters/attachednetworks": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "devcenters/catalogs": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "devcenters/devboxdefinitions": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "devcenters/environmentTypes": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "devcenters/galleries": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "networkConnections": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "projects": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "projects/environmentTypes": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "projects/pools": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ],
- "projects/pools/schedules": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-12-preview",
- "2022-11-11-preview"
- ]
- },
- "Microsoft.DevHub": {
- "workflows": [
- "2022-04-01-preview"
- ]
- },
- "Microsoft.Devices": {
- "IotHubs": [
- "2016-02-03",
- "2017-01-19",
- "2017-07-01",
- "2018-01-22",
- "2018-04-01",
- "2018-12-01-preview",
- "2019-03-22",
- "2019-03-22-preview",
- "2019-07-01-preview",
- "2019-11-04",
- "2020-03-01",
- "2020-04-01",
- "2020-06-15",
- "2020-07-10-preview",
- "2020-08-01",
- "2020-08-31",
- "2020-08-31-preview",
- "2021-02-01-preview",
- "2021-03-03-preview",
- "2021-03-31",
- "2021-07-01",
- "2021-07-01-preview",
- "2021-07-02",
- "2021-07-02-preview",
- "2022-04-30-preview"
- ],
- "IotHubs/certificates": [
- "2017-07-01",
- "2018-01-22",
- "2018-04-01",
- "2018-12-01-preview",
- "2019-03-22",
- "2019-03-22-preview",
- "2019-07-01-preview",
- "2019-11-04",
- "2020-03-01",
- "2020-04-01",
- "2020-06-15",
- "2020-07-10-preview",
- "2020-08-01",
- "2020-08-31",
- "2020-08-31-preview",
- "2021-02-01-preview",
- "2021-03-03-preview",
- "2021-03-31",
- "2021-07-01",
- "2021-07-01-preview",
- "2021-07-02",
- "2021-07-02-preview",
- "2022-04-30-preview"
- ],
- "IotHubs/eventHubEndpoints/ConsumerGroups": [
- "2016-02-03",
- "2017-01-19",
- "2017-07-01",
- "2018-01-22",
- "2018-04-01",
- "2018-12-01-preview",
- "2019-03-22",
- "2019-03-22-preview",
- "2019-07-01-preview",
- "2019-11-04",
- "2020-03-01",
- "2020-04-01",
- "2020-06-15",
- "2020-07-10-preview",
- "2020-08-01",
- "2020-08-31",
- "2020-08-31-preview",
- "2021-02-01-preview",
- "2021-03-03-preview",
- "2021-03-31",
- "2021-07-01",
- "2021-07-01-preview",
- "2021-07-02",
- "2021-07-02-preview",
- "2022-04-30-preview"
- ],
- "iotHubs/privateEndpointConnections": [
- "2020-03-01",
- "2020-04-01",
- "2020-06-15",
- "2020-07-10-preview",
- "2020-08-01",
- "2020-08-31",
- "2020-08-31-preview",
- "2021-02-01-preview",
- "2021-03-03-preview",
- "2021-03-31",
- "2021-07-01",
- "2021-07-01-preview",
- "2021-07-02",
- "2021-07-02-preview",
- "2022-04-30-preview"
- ],
- "provisioningServices": [
- "2017-08-21-preview",
- "2017-11-15",
- "2018-01-22",
- "2020-01-01",
- "2020-03-01",
- "2020-09-01-preview",
- "2021-10-15",
- "2022-02-05"
- ],
- "provisioningServices/certificates": [
- "2017-08-21-preview",
- "2017-11-15",
- "2018-01-22",
- "2020-01-01",
- "2020-03-01",
- "2020-09-01-preview",
- "2021-10-15",
- "2022-02-05"
- ],
- "provisioningServices/privateEndpointConnections": [
- "2020-03-01",
- "2020-09-01-preview",
- "2021-10-15",
- "2022-02-05"
- ]
- },
- "Microsoft.DeviceUpdate": {
- "accounts": [
- "2020-03-01-preview",
- "2022-04-01-preview",
- "2022-10-01",
- "2022-12-01-preview"
- ],
- "accounts/instances": [
- "2020-03-01-preview",
- "2022-04-01-preview",
- "2022-10-01",
- "2022-12-01-preview"
- ],
- "accounts/privateEndpointConnectionProxies": [
- "2020-03-01-preview",
- "2022-04-01-preview",
- "2022-10-01",
- "2022-12-01-preview"
- ],
- "accounts/privateEndpointConnections": [
- "2020-03-01-preview",
- "2022-04-01-preview",
- "2022-10-01",
- "2022-12-01-preview"
- ]
- },
- "Microsoft.DevOps": {
- "pipelines": [
- "2019-07-01-preview",
- "2020-07-13-preview"
- ]
- },
- "Microsoft.DevSpaces": {
- "controllers": [
- "2019-04-01"
- ]
- },
- "Microsoft.DevTestLab": {
- "labs": [
- "2015-05-21-preview",
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/artifactsources": [
- "2015-05-21-preview",
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/costs": [
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/customimages": [
- "2015-05-21-preview",
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/formulas": [
- "2015-05-21-preview",
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/notificationchannels": [
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/policysets/policies": [
- "2015-05-21-preview",
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/schedules": [
- "2015-05-21-preview",
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/servicerunners": [
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/users": [
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/users/disks": [
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/users/environments": [
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/users/secrets": [
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/users/servicefabrics": [
- "2018-09-15"
- ],
- "labs/users/servicefabrics/schedules": [
- "2018-09-15"
- ],
- "labs/virtualmachines": [
- "2015-05-21-preview",
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/virtualmachines/schedules": [
- "2016-05-15",
- "2018-09-15"
- ],
- "labs/virtualnetworks": [
- "2015-05-21-preview",
- "2016-05-15",
- "2018-09-15"
- ],
- "schedules": [
- "2016-05-15",
- "2018-09-15"
- ]
- },
- "Microsoft.DigitalTwins": {
- "digitalTwinsInstances": [
- "2020-03-01-preview",
- "2020-10-31",
- "2020-12-01",
- "2021-06-30-preview",
- "2022-05-31",
- "2022-10-31"
- ],
- "digitalTwinsInstances/endpoints": [
- "2020-03-01-preview",
- "2020-10-31",
- "2020-12-01",
- "2021-06-30-preview",
- "2022-05-31",
- "2022-10-31"
- ],
- "digitalTwinsInstances/privateEndpointConnections": [
- "2020-12-01",
- "2021-06-30-preview",
- "2022-05-31",
- "2022-10-31"
- ],
- "digitalTwinsInstances/timeSeriesDatabaseConnections": [
- "2021-06-30-preview",
- "2022-05-31",
- "2022-10-31"
- ]
- },
- "Microsoft.DocumentDB": {
- "cassandraClusters": [
- "2021-03-01-preview",
- "2021-04-01-preview",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "cassandraClusters/dataCenters": [
- "2021-03-01-preview",
- "2021-04-01-preview",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31",
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/apis/databases": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/databases/collections": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/databases/collections/settings": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/databases/containers": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/databases/containers/settings": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/databases/graphs": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/databases/graphs/settings": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/databases/settings": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/keyspaces": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/keyspaces/settings": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/keyspaces/tables": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/keyspaces/tables/settings": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/tables": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/apis/tables/settings": [
- "2014-04-01",
- "2015-04-08",
- "2015-11-06",
- "2016-03-19",
- "2016-03-31"
- ],
- "databaseAccounts/cassandraKeyspaces": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/cassandraKeyspaces/tables": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/cassandraKeyspaces/tables/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/cassandraKeyspaces/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/cassandraKeyspaces/views": [
- "2021-07-01-preview",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15-preview",
- "2022-08-15-preview"
- ],
- "databaseAccounts/cassandraKeyspaces/views/throughputSettings": [
- "2021-07-01-preview",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15-preview",
- "2022-08-15-preview"
- ],
- "databaseAccounts/dataTransferJobs": [
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15-preview",
- "2022-08-15-preview"
- ],
- "databaseAccounts/graphs": [
- "2021-07-01-preview",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15-preview",
- "2022-08-15-preview"
- ],
- "databaseAccounts/gremlinDatabases": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/gremlinDatabases/graphs": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/gremlinDatabases/graphs/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/gremlinDatabases/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/mongodbDatabases": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/mongodbDatabases/collections": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/mongodbDatabases/collections/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/mongodbDatabases/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/mongodbRoleDefinitions": [
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/mongodbUserDefinitions": [
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/notebookWorkspaces": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/privateEndpointConnections": [
- "2019-08-01-preview",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/services": [
- "2021-04-01-preview",
- "2021-07-01-preview",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlDatabases": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlDatabases/clientEncryptionKeys": [
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15-preview",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlDatabases/containers": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlDatabases/containers/storedProcedures": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlDatabases/containers/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlDatabases/containers/triggers": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlDatabases/containers/userDefinedFunctions": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlDatabases/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlRoleAssignments": [
- "2020-06-01-preview",
- "2021-03-01-preview",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/sqlRoleDefinitions": [
- "2020-06-01-preview",
- "2021-03-01-preview",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/tables": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ],
- "databaseAccounts/tables/throughputSettings": [
- "2019-08-01",
- "2019-12-12",
- "2020-03-01",
- "2020-04-01",
- "2020-06-01-preview",
- "2020-09-01",
- "2021-01-15",
- "2021-03-01-preview",
- "2021-03-15",
- "2021-04-01-preview",
- "2021-04-15",
- "2021-05-15",
- "2021-06-15",
- "2021-07-01-preview",
- "2021-10-15",
- "2021-10-15-preview",
- "2021-11-15-preview",
- "2022-02-15-preview",
- "2022-05-15",
- "2022-05-15-preview",
- "2022-08-15",
- "2022-08-15-preview"
- ]
- },
- "Microsoft.DomainRegistration": {
- "domains": [
- "2015-04-01",
- "2015-08-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "domains/domainOwnershipIdentifiers": [
- "2015-04-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "domains/transferOut": [
- "2021-03-01",
- "2022-03-01"
- ]
- },
- "Microsoft.Dynamics365FraudProtection": {
- "instances": [
- "2021-02-01-preview"
- ]
- },
- "Microsoft.Easm": {
- "workspaces": [
- "2022-04-01-preview"
- ],
- "workspaces/labels": [
- "2022-04-01-preview"
- ]
- },
- "Microsoft.EdgeOrder": {
- "addresses": [
- "2020-12-01-preview",
- "2021-12-01",
- "2022-05-01-preview"
- ],
- "orderItems": [
- "2020-12-01-preview",
- "2021-12-01",
- "2022-05-01-preview"
- ]
- },
- "Microsoft.Education": {
- "labs": [
- "2021-12-01-preview"
- ],
- "labs/students": [
- "2021-12-01-preview"
- ]
- },
- "Microsoft.Elastic": {
- "monitors": [
- "2020-07-01",
- "2020-07-01-preview",
- "2021-09-01-preview",
- "2021-10-01-preview",
- "2022-05-05-preview",
- "2022-07-01-preview"
- ],
- "monitors/tagRules": [
- "2020-07-01",
- "2020-07-01-preview",
- "2021-09-01-preview",
- "2021-10-01-preview",
- "2022-05-05-preview",
- "2022-07-01-preview"
- ]
- },
- "Microsoft.ElasticSan": {
- "elasticSans": [
- "2021-11-20-preview"
- ],
- "elasticSans/volumegroups": [
- "2021-11-20-preview"
- ],
- "elasticSans/volumegroups/volumes": [
- "2021-11-20-preview"
- ]
- },
- "Microsoft.EngagementFabric": {
- "Accounts": [
- "2018-09-01"
- ],
- "Accounts/Channels": [
- "2018-09-01"
- ]
- },
- "Microsoft.EnterpriseKnowledgeGraph": {
- "services": [
- "2018-12-03"
- ]
- },
- "Microsoft.EventGrid": {
- "{parentType}/privateEndpointConnections": [
- "2020-04-01-preview",
- "2020-06-01",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2021-12-01",
- "2022-06-15"
- ],
- "domains": [
- "2018-09-15-preview",
- "2019-02-01-preview",
- "2019-06-01",
- "2020-01-01-preview",
- "2020-04-01-preview",
- "2020-06-01",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2021-12-01",
- "2022-06-15"
- ],
- "domains/eventSubscriptions": [
- "2021-10-15-preview",
- "2022-06-15"
- ],
- "domains/topics": [
- "2019-02-01-preview",
- "2019-06-01",
- "2020-01-01-preview",
- "2020-04-01-preview",
- "2020-06-01",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2021-12-01",
- "2022-06-15"
- ],
- "domains/topics/eventSubscriptions": [
- "2021-10-15-preview",
- "2022-06-15"
- ],
- "eventSubscriptions": [
- "2017-06-15-preview",
- "2017-09-15-preview",
- "2018-01-01",
- "2018-05-01-preview",
- "2018-09-15-preview",
- "2019-01-01",
- "2019-02-01-preview",
- "2019-06-01",
- "2020-01-01-preview",
- "2020-04-01-preview",
- "2020-06-01",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2021-12-01",
- "2022-06-15"
- ],
- "partnerConfigurations": [
- "2021-10-15-preview",
- "2022-06-15"
- ],
- "partnerDestinations": [
- "2021-10-15-preview"
- ],
- "partnerNamespaces": [
- "2020-04-01-preview",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2022-06-15"
- ],
- "partnerNamespaces/channels": [
- "2021-10-15-preview",
- "2022-06-15"
- ],
- "partnerNamespaces/eventChannels": [
- "2020-04-01-preview",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview"
- ],
- "partnerRegistrations": [
- "2020-04-01-preview",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2022-06-15"
- ],
- "partnerTopics": [
- "2021-10-15-preview",
- "2022-06-15"
- ],
- "partnerTopics/eventSubscriptions": [
- "2020-04-01-preview",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2022-06-15"
- ],
- "systemTopics": [
- "2020-04-01-preview",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2021-12-01",
- "2022-06-15"
- ],
- "systemTopics/eventSubscriptions": [
- "2020-04-01-preview",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2021-12-01",
- "2022-06-15"
- ],
- "topics": [
- "2017-06-15-preview",
- "2017-09-15-preview",
- "2018-01-01",
- "2018-05-01-preview",
- "2018-09-15-preview",
- "2019-01-01",
- "2019-02-01-preview",
- "2019-06-01",
- "2020-01-01-preview",
- "2020-04-01-preview",
- "2020-06-01",
- "2020-10-15-preview",
- "2021-06-01-preview",
- "2021-10-15-preview",
- "2021-12-01",
- "2022-06-15"
- ],
- "topics/eventSubscriptions": [
- "2021-10-15-preview",
- "2022-06-15"
- ]
- },
- "Microsoft.EventHub": {
- "clusters": [
- "2018-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/applicationGroups": [
- "2022-01-01-preview"
- ],
- "namespaces/authorizationRules": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/disasterRecoveryConfigs": [
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/eventhubs": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/eventhubs/authorizationRules": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/eventhubs/consumergroups": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/ipfilterrules": [
- "2018-01-01-preview"
- ],
- "namespaces/networkRuleSets": [
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/privateEndpointConnections": [
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/schemagroups": [
- "2021-11-01",
- "2022-01-01-preview"
- ],
- "namespaces/virtualnetworkrules": [
- "2018-01-01-preview"
- ]
- },
- "Microsoft.ExtendedLocation": {
- "customLocations": [
- "2021-03-15-preview",
- "2021-08-15",
- "2021-08-31-preview"
- ],
- "customLocations/resourceSyncRules": [
- "2021-08-31-preview"
- ]
- },
- "Microsoft.Fabric.Admin": {
- "fabricLocations/ipPools": [
- "2016-05-01"
- ]
- },
- "Microsoft.Features": {
- "featureProviders/subscriptionFeatureRegistrations": [
- "2021-07-01"
- ]
- },
- "Microsoft.FluidRelay": {
- "fluidRelayServers": [
- "2021-03-12-preview",
- "2021-06-15-preview",
- "2021-08-30-preview",
- "2021-09-10-preview",
- "2022-02-15",
- "2022-04-21",
- "2022-05-11",
- "2022-05-26",
- "2022-06-01"
- ]
- },
- "Microsoft.GuestConfiguration": {
- "guestConfigurationAssignments": [
- "2018-01-20-preview",
- "2018-06-30-preview",
- "2018-11-20",
- "2020-06-25",
- "2021-01-25",
- "2022-01-25"
- ]
- },
- "Microsoft.HanaOnAzure": {
- "hanaInstances": [
- "2017-11-03-preview"
- ],
- "sapMonitors": [
- "2020-02-07-preview"
- ],
- "sapMonitors/providerInstances": [
- "2020-02-07-preview"
- ]
- },
- "Microsoft.HardwareSecurityModules": {
- "dedicatedHSMs": [
- "2018-10-31-preview",
- "2021-11-30"
- ]
- },
- "Microsoft.HDInsight": {
- "clusters": [
- "2015-03-01-preview",
- "2018-06-01-preview",
- "2021-06-01"
- ],
- "clusters/applications": [
- "2015-03-01-preview",
- "2018-06-01-preview",
- "2021-06-01"
- ],
- "clusters/extensions": [
- "2015-03-01-preview",
- "2018-06-01-preview",
- "2021-06-01"
- ],
- "clusters/privateEndpointConnections": [
- "2021-06-01"
- ]
- },
- "Microsoft.HealthBot": {
- "healthBots": [
- "2020-10-20",
- "2020-10-20-preview",
- "2020-12-08",
- "2020-12-08-preview",
- "2021-06-10",
- "2021-08-24",
- "2022-08-08"
- ]
- },
- "Microsoft.HealthcareApis": {
- "services": [
- "2018-08-20-preview",
- "2019-09-16",
- "2020-03-15",
- "2020-03-30",
- "2021-01-11",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-31-preview",
- "2022-05-15",
- "2022-06-01",
- "2022-10-01-preview"
- ],
- "services/privateEndpointConnections": [
- "2020-03-30",
- "2021-01-11",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-31-preview",
- "2022-05-15",
- "2022-06-01",
- "2022-10-01-preview"
- ],
- "workspaces": [
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-31-preview",
- "2022-05-15",
- "2022-06-01",
- "2022-10-01-preview"
- ],
- "workspaces/analyticsconnectors": [
- "2022-10-01-preview"
- ],
- "workspaces/dicomservices": [
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-31-preview",
- "2022-05-15",
- "2022-06-01",
- "2022-10-01-preview"
- ],
- "workspaces/fhirservices": [
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-31-preview",
- "2022-05-15",
- "2022-06-01",
- "2022-10-01-preview"
- ],
- "workspaces/iotconnectors": [
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-31-preview",
- "2022-05-15",
- "2022-06-01",
- "2022-10-01-preview"
- ],
- "workspaces/iotconnectors/fhirdestinations": [
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-31-preview",
- "2022-05-15",
- "2022-06-01",
- "2022-10-01-preview"
- ],
- "workspaces/privateEndpointConnections": [
- "2021-11-01",
- "2022-01-31-preview",
- "2022-05-15",
- "2022-06-01",
- "2022-10-01-preview"
- ]
- },
- "Microsoft.HybridCompute": {
- "machines": [
- "2019-03-18",
- "2019-08-02",
- "2019-12-12",
- "2020-07-30-preview",
- "2020-08-02",
- "2020-08-15-preview",
- "2021-01-28-preview",
- "2021-03-25-preview",
- "2021-04-22-preview",
- "2021-05-17-preview",
- "2021-05-20",
- "2021-06-10-preview",
- "2021-12-10-preview",
- "2022-03-10",
- "2022-05-10-preview",
- "2022-08-11-preview",
- "2022-11-10"
- ],
- "machines/extensions": [
- "2019-08-02",
- "2019-12-12",
- "2020-07-30-preview",
- "2020-08-02",
- "2020-08-15-preview",
- "2021-01-28-preview",
- "2021-03-25-preview",
- "2021-04-22-preview",
- "2021-05-17-preview",
- "2021-05-20",
- "2021-06-10-preview",
- "2021-12-10-preview",
- "2022-03-10",
- "2022-05-10-preview",
- "2022-08-11-preview",
- "2022-11-10"
- ],
- "privateLinkScopes": [
- "2020-08-15-preview",
- "2021-01-28-preview",
- "2021-03-25-preview",
- "2021-04-22-preview",
- "2021-05-17-preview",
- "2021-05-20",
- "2021-06-10-preview",
- "2021-12-10-preview",
- "2022-03-10",
- "2022-05-10-preview",
- "2022-08-11-preview",
- "2022-11-10"
- ],
- "privateLinkScopes/privateEndpointConnections": [
- "2020-08-15-preview",
- "2021-01-28-preview",
- "2021-03-25-preview",
- "2021-04-22-preview",
- "2021-05-17-preview",
- "2021-05-20",
- "2021-06-10-preview",
- "2021-12-10-preview",
- "2022-03-10",
- "2022-05-10-preview",
- "2022-08-11-preview",
- "2022-11-10"
- ],
- "privateLinkScopes/scopedResources": [
- "2020-08-15-preview"
- ]
- },
- "Microsoft.HybridConnectivity": {
- "endpoints": [
- "2021-10-06-preview",
- "2022-05-01-preview"
- ]
- },
- "Microsoft.HybridContainerService": {
- "provisionedClusters": [
- "2022-05-01-preview"
- ],
- "provisionedClusters/agentPools": [
- "2022-05-01-preview"
- ],
- "provisionedClusters/hybridIdentityMetadata": [
- "2022-05-01-preview"
- ],
- "storageSpaces": [
- "2022-05-01-preview"
- ],
- "virtualNetworks": [
- "2022-05-01-preview"
- ]
- },
- "Microsoft.HybridData": {
- "dataManagers": [
- "2016-06-01",
- "2019-06-01"
- ],
- "dataManagers/dataServices/jobDefinitions": [
- "2016-06-01",
- "2019-06-01"
- ],
- "dataManagers/dataStores": [
- "2016-06-01",
- "2019-06-01"
- ]
- },
- "Microsoft.HybridNetwork": {
- "devices": [
- "2020-01-01-preview",
- "2021-05-01",
- "2022-01-01-preview"
- ],
- "locations/vendors/networkFunctions": [
- "2020-01-01-preview",
- "2021-05-01",
- "2022-01-01-preview"
- ],
- "networkFunctions": [
- "2020-01-01-preview",
- "2021-05-01",
- "2022-01-01-preview"
- ],
- "vendors": [
- "2020-01-01-preview",
- "2021-05-01",
- "2022-01-01-preview"
- ],
- "vendors/vendorSkus": [
- "2020-01-01-preview",
- "2021-05-01",
- "2022-01-01-preview"
- ],
- "vendors/vendorSkus/previewSubscriptions": [
- "2020-01-01-preview",
- "2021-05-01",
- "2022-01-01-preview"
- ]
- },
- "Microsoft.ImportExport": {
- "jobs": [
- "2016-11-01",
- "2020-08-01",
- "2021-01-01"
- ]
- },
- "Microsoft.InfrastructureInsights.Admin": {
- "regionHealths/alerts": [
- "2016-05-01"
- ]
- },
- "Microsoft.Insights": {
- "actionGroups": [
- "2017-04-01",
- "2018-03-01",
- "2018-09-01",
- "2019-03-01",
- "2019-06-01",
- "2021-09-01",
- "2022-04-01",
- "2022-06-01"
- ],
- "activityLogAlerts": [
- "2017-03-01-preview",
- "2017-04-01",
- "2020-10-01"
- ],
- "alertrules": [
- "2014-04-01",
- "2016-03-01"
- ],
- "autoscalesettings": [
- "2014-04-01",
- "2015-04-01",
- "2021-05-01-preview",
- "2022-10-01"
- ],
- "components": [
- "2015-05-01",
- "2018-05-01-preview",
- "2020-02-02",
- "2020-02-02-preview"
- ],
- "components/{scopePath}": [
- "2015-05-01"
- ],
- "components/Annotations": [
- "2015-05-01"
- ],
- "components/currentbillingfeatures": [
- "2015-05-01"
- ],
- "components/exportconfiguration": [
- "2015-05-01"
- ],
- "components/favorites": [
- "2015-05-01"
- ],
- "components/linkedStorageAccounts": [
- "2020-03-01-preview"
- ],
- "components/pricingPlans": [
- "2017-10-01"
- ],
- "components/ProactiveDetectionConfigs": [
- "2015-05-01",
- "2018-05-01-preview"
- ],
- "dataCollectionEndpoints": [
- "2021-04-01",
- "2021-09-01-preview"
- ],
- "dataCollectionRuleAssociations": [
- "2019-11-01-preview",
- "2021-04-01",
- "2021-09-01-preview"
- ],
- "dataCollectionRules": [
- "2019-11-01-preview",
- "2021-04-01",
- "2021-09-01-preview"
- ],
- "diagnosticSettings": [
- "2015-07-01",
- "2016-09-01",
- "2017-05-01-preview",
- "2020-01-01-preview",
- "2021-05-01-preview"
- ],
- "guestDiagnosticSettings": [
- "2018-06-01-preview"
- ],
- "guestDiagnosticSettingsAssociation": [
- "2018-06-01-preview"
- ],
- "logprofiles": [
- "2016-03-01"
- ],
- "metricAlerts": [
- "2018-03-01"
- ],
- "myWorkbooks": [
- "2015-05-01",
- "2020-10-20",
- "2021-03-08"
- ],
- "privateLinkScopes": [
- "2019-10-17-preview",
- "2021-07-01-preview"
- ],
- "privateLinkScopes/privateEndpointConnections": [
- "2019-10-17-preview",
- "2021-07-01-preview"
- ],
- "privateLinkScopes/scopedResources": [
- "2019-10-17-preview",
- "2021-07-01-preview"
- ],
- "scheduledQueryRules": [
- "2018-04-16",
- "2020-05-01-preview",
- "2021-02-01-preview",
- "2021-08-01",
- "2022-06-15",
- "2022-08-01-preview"
- ],
- "webtests": [
- "2015-05-01",
- "2018-05-01-preview",
- "2020-10-05-preview",
- "2022-06-15"
- ],
- "workbooks": [
- "2015-05-01",
- "2018-06-17-preview",
- "2020-10-20",
- "2021-03-08",
- "2021-08-01",
- "2022-04-01"
- ],
- "workbooktemplates": [
- "2019-10-17-preview",
- "2020-11-20"
- ]
- },
- "Microsoft.Intune": {
- "locations/androidPolicies": [
- "2015-01-14-preview",
- "2015-01-14-privatepreview"
- ],
- "locations/androidPolicies/apps": [
- "2015-01-14-preview",
- "2015-01-14-privatepreview"
- ],
- "locations/androidPolicies/groups": [
- "2015-01-14-preview",
- "2015-01-14-privatepreview"
- ],
- "locations/iosPolicies": [
- "2015-01-14-preview",
- "2015-01-14-privatepreview"
- ],
- "locations/iosPolicies/apps": [
- "2015-01-14-preview",
- "2015-01-14-privatepreview"
- ],
- "locations/iosPolicies/groups": [
- "2015-01-14-preview",
- "2015-01-14-privatepreview"
- ]
- },
- "Microsoft.IoTCentral": {
- "iotApps": [
- "2018-09-01",
- "2021-06-01",
- "2021-11-01-preview"
- ],
- "iotApps/privateEndpointConnections": [
- "2021-11-01-preview"
- ]
- },
- "Microsoft.IoTSecurity": {
- "defenderSettings": [
- "2021-02-01-preview"
- ],
- "locations/deviceGroups": [
- "2021-02-01-preview"
- ],
- "onPremiseSensors": [
- "2021-02-01-preview"
- ],
- "sensors": [
- "2021-02-01-preview"
- ],
- "sites": [
- "2021-02-01-preview"
- ]
- },
- "Microsoft.KeyVault": {
- "managedHSMs": [
- "2020-04-01-preview",
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-07-01"
- ],
- "managedHSMs/privateEndpointConnections": [
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-07-01"
- ],
- "vaults": [
- "2015-06-01",
- "2016-10-01",
- "2018-02-14",
- "2018-02-14-preview",
- "2019-09-01",
- "2020-04-01-preview",
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-07-01"
- ],
- "vaults/accessPolicies": [
- "2016-10-01",
- "2018-02-14",
- "2018-02-14-preview",
- "2019-09-01",
- "2020-04-01-preview",
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-07-01"
- ],
- "vaults/keys": [
- "2019-09-01",
- "2020-04-01-preview",
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-07-01"
- ],
- "vaults/privateEndpointConnections": [
- "2018-02-14",
- "2019-09-01",
- "2020-04-01-preview",
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-07-01"
- ],
- "vaults/secrets": [
- "2016-10-01",
- "2018-02-14",
- "2018-02-14-preview",
- "2019-09-01",
- "2020-04-01-preview",
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-10-01",
- "2021-11-01-preview",
- "2022-07-01"
- ]
- },
- "Microsoft.Kubernetes": {
- "connectedClusters": [
- "2020-01-01-preview",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-10-01",
- "2022-05-01-preview",
- "2022-10-01-preview"
- ]
- },
- "Microsoft.KubernetesConfiguration": {
- "extensions": [
- "2020-07-01-preview",
- "2021-05-01-preview",
- "2021-09-01",
- "2021-11-01-preview",
- "2022-01-01-preview",
- "2022-03-01",
- "2022-04-02-preview",
- "2022-07-01",
- "2022-11-01"
- ],
- "fluxConfigurations": [
- "2021-11-01-preview",
- "2022-01-01-preview",
- "2022-03-01",
- "2022-07-01",
- "2022-11-01"
- ],
- "privateLinkScopes": [
- "2022-04-02-preview"
- ],
- "privateLinkScopes/privateEndpointConnections": [
- "2022-04-02-preview"
- ],
- "sourceControlConfigurations": [
- "2019-11-01-preview",
- "2020-07-01-preview",
- "2020-10-01-preview",
- "2021-03-01",
- "2021-05-01-preview",
- "2021-11-01-preview",
- "2022-01-01-preview",
- "2022-03-01",
- "2022-07-01",
- "2022-11-01"
- ]
- },
- "Microsoft.Kusto": {
- "clusters": [
- "2017-09-07-privatepreview",
- "2018-09-07-preview",
- "2019-01-21",
- "2019-05-15",
- "2019-09-07",
- "2019-11-09",
- "2020-02-15",
- "2020-06-14",
- "2020-09-18",
- "2021-01-01",
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ],
- "clusters/attachedDatabaseConfigurations": [
- "2019-09-07",
- "2019-11-09",
- "2020-02-15",
- "2020-06-14",
- "2020-09-18",
- "2021-01-01",
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ],
- "clusters/databases": [
- "2017-09-07-privatepreview",
- "2018-09-07-preview",
- "2019-01-21",
- "2019-05-15",
- "2019-09-07",
- "2019-11-09",
- "2020-02-15",
- "2020-06-14",
- "2020-09-18",
- "2021-01-01",
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ],
- "clusters/databases/dataConnections": [
- "2019-01-21",
- "2019-05-15",
- "2019-09-07",
- "2019-11-09",
- "2020-02-15",
- "2020-06-14",
- "2020-09-18",
- "2021-01-01",
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ],
- "clusters/databases/eventhubconnections": [
- "2017-09-07-privatepreview",
- "2018-09-07-preview"
- ],
- "clusters/databases/principalAssignments": [
- "2019-11-09",
- "2020-02-15",
- "2020-06-14",
- "2020-09-18",
- "2021-01-01",
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ],
- "clusters/databases/scripts": [
- "2021-01-01",
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ],
- "clusters/managedPrivateEndpoints": [
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ],
- "clusters/principalAssignments": [
- "2019-11-09",
- "2020-02-15",
- "2020-06-14",
- "2020-09-18",
- "2021-01-01",
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ],
- "clusters/privateEndpointConnections": [
- "2021-08-27",
- "2022-02-01",
- "2022-07-07",
- "2022-11-11"
- ]
- },
- "Microsoft.LabServices": {
- "labaccounts": [
- "2018-10-15"
- ],
- "labaccounts/galleryimages": [
- "2018-10-15"
- ],
- "labaccounts/labs": [
- "2018-10-15"
- ],
- "labaccounts/labs/environmentsettings": [
- "2018-10-15"
- ],
- "labaccounts/labs/environmentsettings/environments": [
- "2018-10-15"
- ],
- "labaccounts/labs/users": [
- "2018-10-15"
- ],
- "labPlans": [
- "2021-10-01-preview",
- "2021-11-15-preview",
- "2022-08-01"
- ],
- "labPlans/images": [
- "2021-10-01-preview",
- "2021-11-15-preview",
- "2022-08-01"
- ],
- "labs": [
- "2021-10-01-preview",
- "2021-11-15-preview",
- "2022-08-01"
- ],
- "labs/schedules": [
- "2021-10-01-preview",
- "2021-11-15-preview",
- "2022-08-01"
- ],
- "labs/users": [
- "2021-10-01-preview",
- "2021-11-15-preview",
- "2022-08-01"
- ]
- },
- "Microsoft.LoadTestService": {
- "loadTests": [
- "2021-12-01-preview",
- "2022-04-15-preview",
- "2022-12-01"
- ]
- },
- "Microsoft.Logic": {
- "integrationAccounts": [
- "2015-08-01-preview",
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationAccounts/agreements": [
- "2015-08-01-preview",
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationAccounts/assemblies": [
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationAccounts/batchConfigurations": [
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationAccounts/certificates": [
- "2015-08-01-preview",
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationAccounts/maps": [
- "2015-08-01-preview",
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationAccounts/partners": [
- "2015-08-01-preview",
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationAccounts/rosettanetprocessconfigurations": [
- "2016-06-01"
- ],
- "integrationAccounts/schemas": [
- "2015-08-01-preview",
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationAccounts/sessions": [
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "integrationServiceEnvironments": [
- "2019-05-01"
- ],
- "integrationServiceEnvironments/managedApis": [
- "2019-05-01"
- ],
- "workflows": [
- "2015-02-01-preview",
- "2016-06-01",
- "2018-07-01-preview",
- "2019-05-01"
- ],
- "workflows/accessKeys": [
- "2015-02-01-preview"
- ]
- },
- "Microsoft.Logz": {
- "monitors": [
- "2020-10-01",
- "2020-10-01-preview",
- "2022-01-01-preview"
- ],
- "monitors/accounts": [
- "2020-10-01",
- "2020-10-01-preview",
- "2022-01-01-preview"
- ],
- "monitors/accounts/tagRules": [
- "2020-10-01",
- "2020-10-01-preview",
- "2022-01-01-preview"
- ],
- "monitors/metricsSource": [
- "2022-01-01-preview"
- ],
- "monitors/metricsSource/tagRules": [
- "2022-01-01-preview"
- ],
- "monitors/singleSignOnConfigurations": [
- "2020-10-01",
- "2020-10-01-preview",
- "2022-01-01-preview"
- ],
- "monitors/tagRules": [
- "2020-10-01",
- "2020-10-01-preview",
- "2022-01-01-preview"
- ]
- },
- "Microsoft.M365SecurityAndCompliance": {
- "privateLinkServicesForEDMUpload": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForEDMUpload/privateEndpointConnections": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForM365ComplianceCenter": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForM365ComplianceCenter/privateEndpointConnections": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForM365SecurityCenter": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForM365SecurityCenter/privateEndpointConnections": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForMIPPolicySync": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForMIPPolicySync/privateEndpointConnections": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForO365ManagementActivityAPI": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForO365ManagementActivityAPI/privateEndpointConnections": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForSCCPowershell": [
- "2021-03-25-preview"
- ],
- "privateLinkServicesForSCCPowershell/privateEndpointConnections": [
- "2021-03-25-preview"
- ]
- },
- "Microsoft.MachineLearning": {
- "commitmentPlans": [
- "2016-05-01-preview"
- ],
- "webServices": [
- "2016-05-01-preview",
- "2017-01-01"
- ],
- "workspaces": [
- "2016-04-01",
- "2019-10-01"
- ]
- },
- "Microsoft.MachineLearningCompute": {
- "operationalizationClusters": [
- "2017-06-01-preview",
- "2017-08-01-preview"
- ]
- },
- "Microsoft.MachineLearningExperimentation": {
- "accounts": [
- "2017-05-01-preview"
- ],
- "accounts/workspaces": [
- "2017-05-01-preview"
- ],
- "accounts/workspaces/projects": [
- "2017-05-01-preview"
- ]
- },
- "Microsoft.MachineLearningServices": {
- "registries": [
- "2022-10-01-preview"
- ],
- "registries/codes": [
- "2022-10-01-preview"
- ],
- "registries/codes/versions": [
- "2022-10-01-preview"
- ],
- "registries/components": [
- "2022-10-01-preview"
- ],
- "registries/components/versions": [
- "2022-10-01-preview"
- ],
- "registries/environments": [
- "2022-10-01-preview"
- ],
- "registries/environments/versions": [
- "2022-10-01-preview"
- ],
- "registries/models": [
- "2022-10-01-preview"
- ],
- "registries/models/versions": [
- "2022-10-01-preview"
- ],
- "workspaces": [
- "2018-03-01-preview",
- "2018-11-19",
- "2019-05-01",
- "2019-06-01",
- "2019-11-01",
- "2020-01-01",
- "2020-02-18-preview",
- "2020-03-01",
- "2020-04-01",
- "2020-04-01-preview",
- "2020-05-01-preview",
- "2020-05-15-preview",
- "2020-06-01",
- "2020-08-01",
- "2020-09-01-preview",
- "2021-01-01",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-07-01",
- "2022-01-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/batchEndpoints": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/batchEndpoints/deployments": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/codes": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/codes/versions": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/components": [
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/components/versions": [
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/computes": [
- "2018-03-01-preview",
- "2018-11-19",
- "2019-05-01",
- "2019-06-01",
- "2019-11-01",
- "2020-01-01",
- "2020-02-18-preview",
- "2020-03-01",
- "2020-04-01",
- "2020-04-01-preview",
- "2020-05-01-preview",
- "2020-05-15-preview",
- "2020-06-01",
- "2020-08-01",
- "2020-09-01-preview",
- "2021-01-01",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-07-01",
- "2022-01-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/connections": [
- "2020-06-01",
- "2020-08-01",
- "2020-09-01-preview",
- "2021-01-01",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-07-01",
- "2022-01-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/data": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/data/versions": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/datasets": [
- "2020-05-01-preview"
- ],
- "workspaces/datastores": [
- "2020-05-01-preview",
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/environments": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/environments/versions": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/jobs": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/labelingJobs": [
- "2020-09-01-preview",
- "2021-03-01-preview",
- "2022-06-01-preview",
- "2022-10-01-preview"
- ],
- "workspaces/linkedServices": [
- "2020-09-01-preview"
- ],
- "workspaces/linkedWorkspaces": [
- "2020-05-01-preview",
- "2020-05-15-preview"
- ],
- "workspaces/models": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/models/versions": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/onlineEndpoints": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/onlineEndpoints/deployments": [
- "2021-03-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/privateEndpointConnections": [
- "2020-01-01",
- "2020-02-18-preview",
- "2020-03-01",
- "2020-04-01",
- "2020-04-01-preview",
- "2020-05-01-preview",
- "2020-05-15-preview",
- "2020-06-01",
- "2020-08-01",
- "2020-09-01-preview",
- "2021-01-01",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-07-01",
- "2022-01-01-preview",
- "2022-02-01-preview",
- "2022-05-01",
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/schedules": [
- "2022-06-01-preview",
- "2022-10-01",
- "2022-10-01-preview"
- ],
- "workspaces/services": [
- "2020-05-01-preview",
- "2020-05-15-preview",
- "2020-09-01-preview",
- "2021-01-01",
- "2021-04-01"
- ]
- },
- "Microsoft.Maintenance": {
- "applyUpdates": [
- "2018-06-01-preview",
- "2020-04-01",
- "2020-07-01-preview",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-09-01-preview",
- "2022-07-01-preview"
- ],
- "configurationAssignments": [
- "2018-06-01-preview",
- "2020-04-01",
- "2020-07-01-preview",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-09-01-preview",
- "2022-07-01-preview"
- ],
- "maintenanceConfigurations": [
- "2018-06-01-preview",
- "2020-04-01",
- "2020-07-01-preview",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-09-01-preview",
- "2022-07-01-preview"
- ]
- },
- "Microsoft.ManagedIdentity": {
- "userAssignedIdentities": [
- "2015-08-31-preview",
- "2018-11-30",
- "2021-09-30-preview",
- "2022-01-31-preview"
- ],
- "userAssignedIdentities/federatedIdentityCredentials": [
- "2022-01-31-preview"
- ]
- },
- "Microsoft.ManagedNetwork": {
- "managedNetworks": [
- "2019-06-01-preview"
- ],
- "managedNetworks/managedNetworkGroups": [
- "2019-06-01-preview"
- ],
- "managedNetworks/managedNetworkPeeringPolicies": [
- "2019-06-01-preview"
- ],
- "scopeAssignments": [
- "2019-06-01-preview"
- ]
- },
- "Microsoft.ManagedServices": {
- "registrationAssignments": [
- "2018-06-01-preview",
- "2019-04-01-preview",
- "2019-06-01",
- "2019-09-01",
- "2020-02-01-preview",
- "2022-01-01-preview",
- "2022-10-01"
- ],
- "registrationDefinitions": [
- "2018-06-01-preview",
- "2019-04-01-preview",
- "2019-06-01",
- "2019-09-01",
- "2020-02-01-preview",
- "2022-01-01-preview",
- "2022-10-01"
- ]
- },
- "Microsoft.Management": {
- "managementGroups": [
- "2017-11-01-preview",
- "2018-01-01-preview",
- "2018-03-01-preview",
- "2019-11-01",
- "2020-02-01",
- "2020-05-01",
- "2020-10-01",
- "2021-04-01"
- ],
- "managementGroups/settings": [
- "2020-02-01",
- "2020-05-01",
- "2020-10-01",
- "2021-04-01"
- ],
- "managementGroups/subscriptions": [
- "2017-11-01-preview",
- "2018-01-01-preview",
- "2018-03-01-preview",
- "2019-11-01",
- "2020-02-01",
- "2020-05-01",
- "2020-10-01",
- "2021-04-01"
- ]
- },
- "Microsoft.ManagementPartner": {
- "partners": [
- "2018-02-01"
- ]
- },
- "Microsoft.Maps": {
- "accounts": [
- "2017-01-01-preview",
- "2018-05-01",
- "2020-02-01-preview",
- "2021-02-01",
- "2021-07-01-preview",
- "2021-12-01-preview"
- ],
- "accounts/creators": [
- "2020-02-01-preview",
- "2021-02-01",
- "2021-07-01-preview",
- "2021-12-01-preview"
- ],
- "accounts/privateAtlases": [
- "2020-02-01-preview"
- ]
- },
- "Microsoft.Marketplace": {
- "privateStores": [
- "2020-01-01",
- "2021-06-01",
- "2021-12-01",
- "2022-03-01",
- "2022-09-01"
- ],
- "privateStores/adminRequestApprovals": [
- "2020-12-01",
- "2021-06-01",
- "2021-12-01",
- "2022-03-01",
- "2022-09-01"
- ],
- "privateStores/collections": [
- "2021-06-01",
- "2021-12-01",
- "2022-03-01",
- "2022-09-01"
- ],
- "privateStores/collections/offers": [
- "2021-06-01",
- "2021-12-01",
- "2022-03-01",
- "2022-09-01"
- ],
- "privateStores/offers": [
- "2020-01-01"
- ],
- "privateStores/requestApprovals": [
- "2020-12-01",
- "2021-06-01",
- "2021-12-01",
- "2022-03-01",
- "2022-09-01"
- ]
- },
- "Microsoft.MarketplaceOrdering": {
- "offerTypes/publishers/offers/plans/agreements": [
- "2015-06-01",
- "2021-01-01"
- ]
- },
- "Microsoft.Media": {
- "mediaservices": [
- "2015-10-01",
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-05-01",
- "2021-06-01",
- "2021-11-01"
- ],
- "mediaServices/accountFilters": [
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaServices/assets": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaServices/assets/assetFilters": [
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaServices/assets/tracks": [
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaServices/contentKeyPolicies": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaservices/liveEvents": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaservices/liveEvents/liveOutputs": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaServices/mediaGraphs": [
- "2019-09-01-preview",
- "2020-02-01-preview"
- ],
- "mediaservices/privateEndpointConnections": [
- "2020-05-01",
- "2021-05-01",
- "2021-06-01",
- "2021-11-01"
- ],
- "mediaservices/streamingEndpoints": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaServices/streamingLocators": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaServices/streamingPolicies": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01",
- "2022-08-01"
- ],
- "mediaServices/transforms": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01"
- ],
- "mediaServices/transforms/jobs": [
- "2018-03-30-preview",
- "2018-06-01-preview",
- "2018-07-01",
- "2019-05-01-preview",
- "2020-05-01",
- "2021-06-01",
- "2021-11-01"
- ],
- "videoAnalyzers": [
- "2021-05-01-preview",
- "2021-11-01-preview"
- ],
- "videoAnalyzers/accessPolicies": [
- "2021-05-01-preview",
- "2021-11-01-preview"
- ],
- "videoAnalyzers/edgeModules": [
- "2021-05-01-preview",
- "2021-11-01-preview"
- ],
- "videoAnalyzers/livePipelines": [
- "2021-11-01-preview"
- ],
- "videoAnalyzers/pipelineJobs": [
- "2021-11-01-preview"
- ],
- "videoAnalyzers/pipelineTopologies": [
- "2021-11-01-preview"
- ],
- "videoAnalyzers/privateEndpointConnections": [
- "2021-11-01-preview"
- ],
- "videoAnalyzers/videos": [
- "2021-05-01-preview",
- "2021-11-01-preview"
- ]
- },
- "Microsoft.Migrate": {
- "assessmentProjects": [
- "2019-10-01"
- ],
- "assessmentProjects/groups": [
- "2019-10-01"
- ],
- "assessmentProjects/groups/assessments": [
- "2019-10-01"
- ],
- "assessmentProjects/hypervcollectors": [
- "2019-10-01"
- ],
- "assessmentProjects/importcollectors": [
- "2019-10-01"
- ],
- "assessmentprojects/privateEndpointConnections": [
- "2019-10-01"
- ],
- "assessmentProjects/servercollectors": [
- "2019-10-01"
- ],
- "assessmentProjects/vmwarecollectors": [
- "2019-10-01"
- ],
- "migrateProjects": [
- "2018-09-01-preview",
- "2020-05-01"
- ],
- "migrateProjects/privateEndpointConnections": [
- "2020-05-01"
- ],
- "migrateProjects/solutions": [
- "2018-09-01-preview"
- ],
- "moveCollections": [
- "2019-10-01-preview",
- "2021-01-01",
- "2021-08-01"
- ],
- "moveCollections/moveResources": [
- "2019-10-01-preview",
- "2021-01-01",
- "2021-08-01"
- ],
- "projects": [
- "2017-11-11-preview",
- "2018-02-02"
- ],
- "projects/groups": [
- "2017-11-11-preview",
- "2018-02-02"
- ],
- "projects/groups/assessments": [
- "2017-11-11-preview",
- "2018-02-02"
- ]
- },
- "Microsoft.MixedReality": {
- "objectAnchorsAccounts": [
- "2021-03-01-preview"
- ],
- "remoteRenderingAccounts": [
- "2019-12-02-preview",
- "2020-04-06-preview",
- "2021-01-01",
- "2021-03-01-preview"
- ],
- "spatialAnchorsAccounts": [
- "2019-02-28-preview",
- "2019-12-02-preview",
- "2020-05-01",
- "2021-01-01",
- "2021-03-01-preview"
- ]
- },
- "Microsoft.MobileNetwork": {
- "mobileNetworks": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "mobileNetworks/dataNetworks": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "mobileNetworks/services": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "mobileNetworks/simPolicies": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "mobileNetworks/sites": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "mobileNetworks/slices": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "packetCoreControlPlanes": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "packetCoreControlPlanes/packetCoreDataPlanes": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "packetCoreControlPlanes/packetCoreDataPlanes/attachedDataNetworks": [
- "2022-03-01-preview",
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "simGroups": [
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "simGroups/sims": [
- "2022-04-01-preview",
- "2022-11-01"
- ],
- "sims": [
- "2022-03-01-preview"
- ]
- },
- "Microsoft.Monitor": {
- "accounts": [
- "2021-06-03-preview"
- ]
- },
- "Microsoft.NetApp": {
- "netAppAccounts": [
- "2017-08-15",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-10-01",
- "2019-11-01",
- "2020-02-01",
- "2020-03-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-04-01",
- "2021-04-01-preview",
- "2021-06-01",
- "2021-08-01",
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/backupPolicies": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-04-01",
- "2021-04-01-preview",
- "2021-06-01",
- "2021-08-01",
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/capacityPools": [
- "2017-08-15",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-10-01",
- "2019-11-01",
- "2020-02-01",
- "2020-03-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-04-01",
- "2021-04-01-preview",
- "2021-06-01",
- "2021-08-01",
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/capacityPools/volumes": [
- "2017-08-15",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-10-01",
- "2019-11-01",
- "2020-02-01",
- "2020-03-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-04-01",
- "2021-04-01-preview",
- "2021-06-01",
- "2021-08-01",
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/capacityPools/volumes/backups": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-04-01",
- "2021-04-01-preview",
- "2021-06-01",
- "2021-08-01",
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/capacityPools/volumes/snapshots": [
- "2017-08-15",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-10-01",
- "2019-11-01",
- "2020-02-01",
- "2020-03-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-04-01",
- "2021-04-01-preview",
- "2021-06-01",
- "2021-08-01",
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/capacityPools/volumes/subvolumes": [
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/capacityPools/volumes/volumeQuotaRules": [
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/snapshotPolicies": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-11-01",
- "2020-12-01",
- "2021-02-01",
- "2021-04-01",
- "2021-04-01-preview",
- "2021-06-01",
- "2021-08-01",
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ],
- "netAppAccounts/volumeGroups": [
- "2021-08-01",
- "2021-10-01",
- "2022-01-01",
- "2022-03-01",
- "2022-05-01"
- ]
- },
- "Microsoft.Network": {
- "applicationGateways": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "applicationGateways/privateEndpointConnections": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "ApplicationGatewayWebApplicationFirewallPolicies": [
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "applicationSecurityGroups": [
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "azureFirewalls": [
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "bastionHosts": [
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "cloudServiceSlots": [
- "2022-05-01",
- "2022-07-01"
- ],
- "connections": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "connections/sharedkey": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "customIpPrefixes": [
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "ddosCustomPolicies": [
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "ddosProtectionPlans": [
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "dnsForwardingRulesets": [
- "2020-04-01-preview",
- "2022-07-01"
- ],
- "dnsForwardingRulesets/forwardingRules": [
- "2020-04-01-preview",
- "2022-07-01"
- ],
- "dnsForwardingRulesets/virtualNetworkLinks": [
- "2020-04-01-preview",
- "2022-07-01"
- ],
- "dnsResolvers": [
- "2020-04-01-preview",
- "2022-07-01"
- ],
- "dnsResolvers/inboundEndpoints": [
- "2020-04-01-preview",
- "2022-07-01"
- ],
- "dnsResolvers/outboundEndpoints": [
- "2020-04-01-preview",
- "2022-07-01"
- ],
- "dnsZones": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/A": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/AAAA": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/CAA": [
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/CNAME": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/MX": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/NS": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/PTR": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/SOA": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/SRV": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dnsZones/TXT": [
- "2015-05-04-preview",
- "2016-04-01",
- "2017-09-01",
- "2017-10-01",
- "2018-03-01-preview",
- "2018-05-01"
- ],
- "dscpConfigurations": [
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRouteCircuits": [
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRouteCircuits/authorizations": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRouteCircuits/peerings": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRouteCircuits/peerings/connections": [
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRouteCrossConnections": [
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRouteCrossConnections/peerings": [
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRouteGateways": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRouteGateways/expressRouteConnections": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "ExpressRoutePorts": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "expressRoutePorts/authorizations": [
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "firewallPolicies": [
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "firewallPolicies/ruleCollectionGroups": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "firewallPolicies/ruleGroups": [
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01"
- ],
- "firewallPolicies/signatureOverrides": [
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "frontDoors": [
- "2018-08-01-preview",
- "2019-04-01",
- "2019-05-01",
- "2020-01-01",
- "2020-04-01",
- "2020-05-01",
- "2021-06-01"
- ],
- "frontDoors/rulesEngines": [
- "2020-01-01",
- "2020-04-01",
- "2020-05-01",
- "2021-06-01"
- ],
- "FrontDoorWebApplicationFirewallPolicies": [
- "2018-08-01-preview",
- "2019-03-01",
- "2019-03-01-preview",
- "2019-10-01",
- "2020-04-01",
- "2020-11-01",
- "2021-06-01",
- "2022-05-01"
- ],
- "interfaceEndpoints": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01"
- ],
- "IpAllocations": [
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "ipGroups": [
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "loadBalancers": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "loadBalancers/backendAddressPools": [
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "loadBalancers/inboundNatRules": [
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "localNetworkGateways": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "managementGroups/networkManagerConnections": [
- "2021-05-01-preview"
- ],
- "natGateways": [
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "NetworkExperimentProfiles": [
- "2019-11-01"
- ],
- "NetworkExperimentProfiles/Experiments": [
- "2019-11-01"
- ],
- "networkInterfaces": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkInterfaces/tapConfigurations": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagerConnections": [
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers/connectivityConfigurations": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers/networkGroups": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers/networkGroups/staticMembers": [
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers/scopeConnections": [
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers/securityAdminConfigurations": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers/securityAdminConfigurations/ruleCollections": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers/securityAdminConfigurations/ruleCollections/rules": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-04-01-preview",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkManagers/securityUserConfigurations": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-02-01-preview",
- "2022-04-01-preview"
- ],
- "networkManagers/securityUserConfigurations/ruleCollections": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-02-01-preview",
- "2022-04-01-preview"
- ],
- "networkManagers/securityUserConfigurations/ruleCollections/rules": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2022-02-01-preview",
- "2022-04-01-preview"
- ],
- "networkProfiles": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkSecurityGroups": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkSecurityGroups/securityRules": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkSecurityPerimeters": [
- "2021-02-01-preview",
- "2021-03-01-preview"
- ],
- "networkSecurityPerimeters/links": [
- "2021-02-01-preview"
- ],
- "networkSecurityPerimeters/profiles": [
- "2021-02-01-preview"
- ],
- "networkSecurityPerimeters/profiles/accessRules": [
- "2021-02-01-preview"
- ],
- "networkSecurityPerimeters/resourceAssociations": [
- "2021-02-01-preview"
- ],
- "networkVirtualAppliances": [
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkVirtualAppliances/inboundSecurityRules": [
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkVirtualAppliances/virtualApplianceSites": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkWatchers": [
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkWatchers/connectionMonitors": [
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkWatchers/flowLogs": [
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "networkWatchers/packetCaptures": [
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "p2svpnGateways": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "privateDnsZones": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/A": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/AAAA": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/CNAME": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/MX": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/PTR": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/SOA": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/SRV": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/TXT": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateDnsZones/virtualNetworkLinks": [
- "2018-09-01",
- "2020-01-01",
- "2020-06-01"
- ],
- "privateEndpoints": [
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "privateEndpoints/privateDnsZoneGroups": [
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "privateLinkServices": [
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "privateLinkServices/privateEndpointConnections": [
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "publicIPAddresses": [
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "publicIPPrefixes": [
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "routeFilters": [
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "routeFilters/routeFilterRules": [
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "routeTables": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "routeTables/routes": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "securityPartnerProviders": [
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "serviceEndpointPolicies": [
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "serviceEndpointPolicies/serviceEndpointPolicyDefinitions": [
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "trafficmanagerprofiles": [
- "2015-11-01",
- "2017-03-01",
- "2017-05-01",
- "2018-02-01",
- "2018-03-01",
- "2018-04-01",
- "2018-08-01",
- "2022-04-01-preview"
- ],
- "trafficmanagerprofiles/AzureEndpoints": [
- "2018-08-01",
- "2022-04-01-preview"
- ],
- "trafficmanagerprofiles/ExternalEndpoints": [
- "2018-08-01",
- "2022-04-01-preview"
- ],
- "trafficmanagerprofiles/NestedEndpoints": [
- "2018-08-01",
- "2022-04-01-preview"
- ],
- "trafficManagerUserMetricsKeys": [
- "2017-09-01-preview",
- "2018-04-01",
- "2018-08-01",
- "2022-04-01-preview"
- ],
- "virtualHubs": [
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualHubs/bgpConnections": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualHubs/hubRouteTables": [
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualHubs/hubVirtualNetworkConnections": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualHubs/ipConfigurations": [
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualHubs/routeMaps": [
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualHubs/routeTables": [
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualHubs/routingIntent": [
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualnetworkgateways": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualNetworkGateways/natRules": [
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualnetworks": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualnetworks/subnets": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-03-30",
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualNetworks/virtualNetworkPeerings": [
- "2016-06-01",
- "2016-09-01",
- "2016-12-01",
- "2017-03-01",
- "2017-06-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2018-01-01",
- "2018-02-01",
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualNetworkTaps": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualRouters": [
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualRouters/peerings": [
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualWans": [
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "virtualWans/p2sVpnServerConfigurations": [
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01"
- ],
- "vpnGateways": [
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "vpnGateways/natRules": [
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "vpnGateways/vpnConnections": [
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "vpnServerConfigurations": [
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "vpnServerConfigurations/configurationPolicyGroups": [
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ],
- "vpnSites": [
- "2018-04-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-02-01",
- "2019-04-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-11-01",
- "2019-12-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-11-01",
- "2021-02-01",
- "2021-03-01",
- "2021-05-01",
- "2021-08-01",
- "2022-01-01",
- "2022-05-01",
- "2022-07-01"
- ]
- },
- "Microsoft.Network.Admin": {
- "locations/quotas": [
- "2015-06-15"
- ]
- },
- "Microsoft.NetworkFunction": {
- "azureTrafficCollectors": [
- "2021-09-01-preview",
- "2022-05-01",
- "2022-08-01",
- "2022-11-01"
- ],
- "azureTrafficCollectors/collectorPolicies": [
- "2021-09-01-preview",
- "2022-05-01",
- "2022-08-01",
- "2022-11-01"
- ]
- },
- "Microsoft.NotificationHubs": {
- "namespaces": [
- "2014-09-01",
- "2016-03-01",
- "2017-04-01"
- ],
- "namespaces/AuthorizationRules": [
- "2014-09-01",
- "2016-03-01",
- "2017-04-01"
- ],
- "namespaces/notificationHubs": [
- "2014-09-01",
- "2016-03-01",
- "2017-04-01"
- ],
- "namespaces/notificationHubs/AuthorizationRules": [
- "2014-09-01",
- "2016-03-01",
- "2017-04-01"
- ]
- },
- "Microsoft.OffAzure": {
- "HyperVSites": [
- "2020-01-01",
- "2020-07-07"
- ],
- "HyperVSites/clusters": [
- "2020-01-01",
- "2020-07-07"
- ],
- "HyperVSites/hosts": [
- "2020-01-01",
- "2020-07-07"
- ],
- "MasterSites": [
- "2020-07-07"
- ],
- "masterSites/privateEndpointConnections": [
- "2020-07-07"
- ],
- "VMwareSites": [
- "2020-01-01",
- "2020-07-07"
- ],
- "VMwareSites/vCenters": [
- "2020-01-01",
- "2020-07-07"
- ]
- },
- "Microsoft.OpenEnergyPlatform": {
- "energyServices": [
- "2021-06-01-preview",
- "2022-04-04-preview"
- ]
- },
- "Microsoft.OperationalInsights": {
- "clusters": [
- "2019-08-01-preview",
- "2020-03-01-preview",
- "2020-08-01",
- "2020-10-01",
- "2021-06-01"
- ],
- "queryPacks": [
- "2019-09-01",
- "2019-09-01-preview"
- ],
- "queryPacks/queries": [
- "2019-09-01",
- "2019-09-01-preview"
- ],
- "workspaces": [
- "2015-11-01-preview",
- "2020-03-01-preview",
- "2020-08-01",
- "2020-10-01",
- "2021-06-01",
- "2021-12-01-preview",
- "2022-10-01"
- ],
- "workspaces/dataExports": [
- "2019-08-01-preview",
- "2020-03-01-preview",
- "2020-08-01"
- ],
- "workspaces/dataSources": [
- "2015-11-01-preview",
- "2020-03-01-preview",
- "2020-08-01"
- ],
- "workspaces/features/machineGroups": [
- "2015-11-01-preview"
- ],
- "workspaces/linkedServices": [
- "2015-11-01-preview",
- "2019-08-01-preview",
- "2020-03-01-preview",
- "2020-08-01"
- ],
- "workspaces/linkedStorageAccounts": [
- "2019-08-01-preview",
- "2020-03-01-preview",
- "2020-08-01"
- ],
- "workspaces/savedSearches": [
- "2015-03-20",
- "2020-03-01-preview",
- "2020-08-01"
- ],
- "workspaces/storageInsightConfigs": [
- "2015-03-20",
- "2020-03-01-preview",
- "2020-08-01"
- ],
- "workspaces/tables": [
- "2021-12-01-preview",
- "2022-10-01"
- ]
- },
- "Microsoft.OperationsManagement": {
- "ManagementAssociations": [
- "2015-11-01-preview"
- ],
- "ManagementConfigurations": [
- "2015-11-01-preview"
- ],
- "solutions": [
- "2015-11-01-preview"
- ]
- },
- "Microsoft.Orbital": {
- "contactProfiles": [
- "2021-04-04-preview",
- "2022-03-01"
- ],
- "spacecrafts": [
- "2021-04-04-preview",
- "2022-03-01"
- ],
- "spacecrafts/contacts": [
- "2021-04-04-preview",
- "2022-03-01"
- ]
- },
- "Microsoft.Peering": {
- "peerAsns": [
- "2019-08-01-preview",
- "2019-09-01-preview",
- "2020-01-01-preview",
- "2020-04-01",
- "2020-10-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "peerings": [
- "2019-08-01-preview",
- "2019-09-01-preview",
- "2020-01-01-preview",
- "2020-04-01",
- "2020-10-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "peerings/registeredAsns": [
- "2020-01-01-preview",
- "2020-04-01",
- "2020-10-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "peerings/registeredPrefixes": [
- "2020-01-01-preview",
- "2020-04-01",
- "2020-10-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "peeringServices": [
- "2019-08-01-preview",
- "2019-09-01-preview",
- "2020-01-01-preview",
- "2020-04-01",
- "2020-10-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "peeringServices/connectionMonitorTests": [
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ],
- "peeringServices/prefixes": [
- "2019-08-01-preview",
- "2019-09-01-preview",
- "2020-01-01-preview",
- "2020-04-01",
- "2020-10-01",
- "2021-01-01",
- "2021-06-01",
- "2022-01-01",
- "2022-06-01",
- "2022-10-01"
- ]
- },
- "Microsoft.PolicyInsights": {
- "attestations": [
- "2021-01-01",
- "2022-09-01"
- ],
- "remediations": [
- "2018-07-01-preview",
- "2019-07-01",
- "2021-10-01"
- ]
- },
- "Microsoft.Portal": {
- "consoles": [
- "2018-10-01"
- ],
- "dashboards": [
- "2015-08-01-preview",
- "2018-10-01-preview",
- "2019-01-01-preview",
- "2020-09-01-preview"
- ],
- "locations/consoles": [
- "2018-10-01"
- ],
- "locations/userSettings": [
- "2018-10-01"
- ],
- "tenantConfigurations": [
- "2019-01-01-preview",
- "2020-09-01-preview"
- ],
- "userSettings": [
- "2018-10-01"
- ]
- },
- "Microsoft.PowerBI": {
- "privateLinkServicesForPowerBI": [
- "2020-06-01"
- ],
- "privateLinkServicesForPowerBI/privateEndpointConnections": [
- "2020-06-01"
- ],
- "workspaceCollections": [
- "2016-01-29"
- ]
- },
- "Microsoft.PowerBIDedicated": {
- "autoScaleVCores": [
- "2021-01-01"
- ],
- "capacities": [
- "2017-10-01",
- "2021-01-01"
- ]
- },
- "Microsoft.PowerPlatform": {
- "accounts": [
- "2020-10-30-preview"
- ],
- "enterprisePolicies": [
- "2020-10-30-preview"
- ],
- "enterprisePolicies/privateEndpointConnections": [
- "2020-10-30-preview"
- ]
- },
- "Microsoft.ProviderHub": {
- "providerRegistrations": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/customRollouts": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/defaultRollouts": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/notificationRegistrations": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/operations": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/resourcetypeRegistrations": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/skus": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/skus": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/skus": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ],
- "providerRegistrations/resourcetypeRegistrations/skus": [
- "2020-11-20",
- "2021-05-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview"
- ]
- },
- "Microsoft.Purview": {
- "accounts": [
- "2020-12-01-preview",
- "2021-07-01"
- ],
- "accounts/privateEndpointConnections": [
- "2020-12-01-preview",
- "2021-07-01"
- ]
- },
- "Microsoft.Quantum": {
- "workspaces": [
- "2019-11-04-preview",
- "2022-01-10-preview"
- ]
- },
- "Microsoft.Quota": {
- "quotaLimits": [
- "2021-03-15"
- ],
- "quotas": [
- "2021-03-15-preview"
- ]
- },
- "Microsoft.RecommendationsService": {
- "accounts": [
- "2022-02-01",
- "2022-03-01-preview"
- ],
- "accounts/modeling": [
- "2022-02-01",
- "2022-03-01-preview"
- ],
- "accounts/serviceEndpoints": [
- "2022-02-01",
- "2022-03-01-preview"
- ]
- },
- "Microsoft.RecoveryServices": {
- "vaults": [
- "2016-06-01",
- "2020-02-02",
- "2020-10-01",
- "2021-01-01",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-11-01-preview",
- "2021-12-01",
- "2022-01-01",
- "2022-01-31-preview",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-09-30-preview",
- "2022-10-01"
- ],
- "vaults/backupconfig": [
- "2019-06-15",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/backupEncryptionConfigs": [
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/backupFabrics/backupProtectionIntent": [
- "2017-07-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/backupFabrics/protectionContainers": [
- "2016-12-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/backupFabrics/protectionContainers/protectedItems": [
- "2016-06-01",
- "2019-05-13",
- "2019-06-15",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/backupPolicies": [
- "2016-06-01",
- "2019-05-13",
- "2019-06-15",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/backupResourceGuardProxies": [
- "2021-02-01-preview",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/backupstorageconfig": [
- "2016-12-01",
- "2018-12-20",
- "2021-04-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-15",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/certificates": [
- "2016-06-01",
- "2020-02-02",
- "2020-10-01",
- "2021-01-01",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-11-01-preview",
- "2021-12-01",
- "2022-01-01",
- "2022-01-31-preview",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-09-30-preview",
- "2022-10-01"
- ],
- "vaults/extendedInformation": [
- "2016-06-01",
- "2020-02-02",
- "2020-10-01",
- "2021-01-01",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-11-01-preview",
- "2021-12-01",
- "2022-01-01",
- "2022-01-31-preview",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-09-30-preview",
- "2022-10-01"
- ],
- "vaults/privateEndpointConnections": [
- "2020-02-02",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-02-01-preview",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-06-01-preview",
- "2022-09-01-preview",
- "2022-10-01"
- ],
- "vaults/replicationAlertSettings": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics/replicationProtectionContainers": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems": [
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics/replicationRecoveryServicesProviders": [
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationFabrics/replicationvCenters": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationPolicies": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationProtectionIntents": [
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationRecoveryPlans": [
- "2016-08-10",
- "2018-01-10",
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ],
- "vaults/replicationVaultSettings": [
- "2018-07-10",
- "2021-02-10",
- "2021-03-01",
- "2021-04-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-08-01",
- "2022-09-10",
- "2022-10-01"
- ]
- },
- "Microsoft.RedHatOpenShift": {
- "openShiftClusters": [
- "2020-04-30",
- "2021-09-01-preview",
- "2022-04-01",
- "2022-09-04"
- ],
- "openshiftclusters/machinePool": [
- "2022-09-04"
- ],
- "openshiftclusters/secret": [
- "2022-09-04"
- ],
- "openshiftclusters/syncIdentityProvider": [
- "2022-09-04"
- ],
- "openshiftclusters/syncSet": [
- "2022-09-04"
- ]
- },
- "Microsoft.Relay": {
- "namespaces": [
- "2016-07-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-11-01"
- ],
- "namespaces/AuthorizationRules": [
- "2016-07-01",
- "2017-04-01",
- "2021-11-01"
- ],
- "namespaces/HybridConnections": [
- "2016-07-01",
- "2017-04-01",
- "2021-11-01"
- ],
- "namespaces/HybridConnections/authorizationRules": [
- "2016-07-01",
- "2017-04-01",
- "2021-11-01"
- ],
- "namespaces/networkRuleSets": [
- "2018-01-01-preview",
- "2021-11-01"
- ],
- "namespaces/privateEndpointConnections": [
- "2018-01-01-preview",
- "2021-11-01"
- ],
- "namespaces/WcfRelays": [
- "2016-07-01",
- "2017-04-01",
- "2021-11-01"
- ],
- "namespaces/WcfRelays/authorizationRules": [
- "2016-07-01",
- "2017-04-01",
- "2021-11-01"
- ]
- },
- "Microsoft.ResourceConnector": {
- "appliances": [
- "2021-10-31-preview",
- "2022-04-15-preview",
- "2022-10-27"
- ]
- },
- "Microsoft.ResourceGraph": {
- "queries": [
- "2018-09-01-preview",
- "2020-04-01-preview"
- ]
- },
- "Microsoft.Resources": {
- "deployments": [
- "2015-11-01",
- "2016-02-01",
- "2016-07-01",
- "2016-09-01",
- "2017-05-10",
- "2018-02-01",
- "2018-05-01",
- "2019-03-01",
- "2019-05-01",
- "2019-05-10",
- "2019-07-01",
- "2019-08-01",
- "2019-10-01",
- "2020-06-01",
- "2020-08-01",
- "2020-10-01",
- "2021-01-01",
- "2021-04-01",
- "2022-09-01"
- ],
- "deploymentScripts": [
- "2019-10-01-preview",
- "2020-10-01"
- ],
- "resourceGroups": [
- "2015-11-01",
- "2016-02-01",
- "2016-07-01",
- "2016-09-01",
- "2017-05-10",
- "2018-02-01",
- "2018-05-01",
- "2019-03-01",
- "2019-05-01",
- "2019-05-10",
- "2019-07-01",
- "2019-08-01",
- "2019-10-01",
- "2020-06-01",
- "2020-08-01",
- "2020-10-01",
- "2021-01-01",
- "2021-04-01",
- "2022-09-01"
- ],
- "tags": [
- "2019-10-01",
- "2020-06-01",
- "2020-08-01",
- "2020-10-01",
- "2021-01-01",
- "2021-04-01",
- "2022-09-01"
- ],
- "templateSpecs": [
- "2019-06-01-preview",
- "2021-03-01-preview",
- "2021-05-01",
- "2022-02-01"
- ],
- "templateSpecs/versions": [
- "2019-06-01-preview",
- "2021-03-01-preview",
- "2021-05-01",
- "2022-02-01"
- ]
- },
- "Microsoft.SaaS": {
- "resources": [
- "2018-03-01-beta"
- ],
- "saasresources": [
- "2018-03-01-beta"
- ]
- },
- "Microsoft.Scheduler": {
- "jobCollections": [
- "2014-08-01-preview",
- "2016-01-01",
- "2016-03-01"
- ],
- "jobCollections/jobs": [
- "2014-08-01-preview",
- "2016-01-01",
- "2016-03-01"
- ]
- },
- "Microsoft.ScVmm": {
- "availabilitySets": [
- "2020-06-05-preview"
- ],
- "clouds": [
- "2020-06-05-preview"
- ],
- "virtualMachines": [
- "2020-06-05-preview"
- ],
- "virtualMachineTemplates": [
- "2020-06-05-preview"
- ],
- "virtualNetworks": [
- "2020-06-05-preview"
- ],
- "vmmServers": [
- "2020-06-05-preview"
- ],
- "vmmServers/inventoryItems": [
- "2020-06-05-preview"
- ]
- },
- "Microsoft.Search": {
- "searchServices": [
- "2015-02-28",
- "2015-08-19",
- "2019-10-01-preview",
- "2020-03-13",
- "2020-08-01",
- "2020-08-01-preview",
- "2021-04-01-preview"
- ],
- "searchServices/privateEndpointConnections": [
- "2019-10-01-preview",
- "2020-03-13",
- "2020-08-01",
- "2020-08-01-preview",
- "2021-04-01-preview"
- ],
- "searchServices/sharedPrivateLinkResources": [
- "2020-08-01",
- "2020-08-01-preview",
- "2021-04-01-preview"
- ]
- },
- "Microsoft.Security": {
- "advancedThreatProtectionSettings": [
- "2017-08-01-preview",
- "2019-01-01"
- ],
- "alertsSuppressionRules": [
- "2019-01-01-preview"
- ],
- "apiCollections": [
- "2022-11-20-preview"
- ],
- "applications": [
- "2022-07-01-preview"
- ],
- "assessmentMetadata": [
- "2019-01-01-preview",
- "2020-01-01",
- "2021-06-01"
- ],
- "assessments": [
- "2019-01-01-preview",
- "2020-01-01",
- "2021-06-01"
- ],
- "assessments/governanceAssignments": [
- "2022-01-01-preview"
- ],
- "assignments": [
- "2021-08-01-preview"
- ],
- "automations": [
- "2019-01-01-preview"
- ],
- "autoProvisioningSettings": [
- "2017-08-01-preview"
- ],
- "connectors": [
- "2020-01-01-preview"
- ],
- "customAssessmentAutomations": [
- "2021-07-01-preview"
- ],
- "customEntityStoreAssignments": [
- "2021-07-01-preview"
- ],
- "deviceSecurityGroups": [
- "2017-08-01-preview",
- "2019-08-01"
- ],
- "governanceRules": [
- "2022-01-01-preview"
- ],
- "informationProtectionPolicies": [
- "2017-08-01-preview"
- ],
- "ingestionSettings": [
- "2021-01-15-preview"
- ],
- "iotSecuritySolutions": [
- "2017-08-01-preview",
- "2019-08-01"
- ],
- "locations/applicationWhitelistings": [
- "2015-06-01-preview",
- "2020-01-01"
- ],
- "locations/jitNetworkAccessPolicies": [
- "2015-06-01-preview",
- "2020-01-01"
- ],
- "pricings": [
- "2017-08-01-preview",
- "2018-06-01",
- "2022-03-01"
- ],
- "securityConnectors": [
- "2021-07-01-preview",
- "2021-12-01-preview",
- "2022-05-01-preview",
- "2022-08-01-preview"
- ],
- "securityContacts": [
- "2017-08-01-preview",
- "2020-01-01-preview"
- ],
- "serverVulnerabilityAssessments": [
- "2020-01-01"
- ],
- "settings": [
- "2017-08-01-preview",
- "2019-01-01",
- "2021-06-01",
- "2021-07-01",
- "2022-05-01"
- ],
- "sqlVulnerabilityAssessments/baselineRules": [
- "2020-07-01-preview"
- ],
- "standards": [
- "2021-08-01-preview"
- ],
- "workspaceSettings": [
- "2017-08-01-preview"
- ]
- },
- "Microsoft.SecurityAndCompliance": {
- "privateLinkServicesForEDMUpload": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForEDMUpload/privateEndpointConnections": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForM365ComplianceCenter": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForM365ComplianceCenter/privateEndpointConnections": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForM365SecurityCenter": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForM365SecurityCenter/privateEndpointConnections": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForMIPPolicySync": [
- "2021-03-08"
- ],
- "privateLinkServicesForMIPPolicySync/privateEndpointConnections": [
- "2021-03-08"
- ],
- "privateLinkServicesForO365ManagementActivityAPI": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForO365ManagementActivityAPI/privateEndpointConnections": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForSCCPowershell": [
- "2021-01-11",
- "2021-03-08"
- ],
- "privateLinkServicesForSCCPowershell/privateEndpointConnections": [
- "2021-01-11",
- "2021-03-08"
- ]
- },
- "Microsoft.SecurityDevOps": {
- "azureDevOpsConnectors": [
- "2022-09-01-preview"
- ],
- "azureDevOpsConnectors/orgs": [
- "2022-09-01-preview"
- ],
- "azureDevOpsConnectors/orgs/projects": [
- "2022-09-01-preview"
- ],
- "azureDevOpsConnectors/orgs/projects/repos": [
- "2022-09-01-preview"
- ],
- "gitHubConnectors": [
- "2022-09-01-preview"
- ],
- "gitHubConnectors/owners": [
- "2022-09-01-preview"
- ],
- "gitHubConnectors/owners/repos": [
- "2022-09-01-preview"
- ]
- },
- "Microsoft.SecurityInsights": {
- "alertRules": [
- "2019-01-01-preview",
- "2020-01-01",
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "alertRules/actions": [
- "2019-01-01-preview",
- "2020-01-01",
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "automationRules": [
- "2019-01-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "bookmarks": [
- "2019-01-01-preview",
- "2020-01-01",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "bookmarks/relations": [
- "2019-01-01-preview",
- "2021-09-01-preview",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "cases": [
- "2019-01-01-preview"
- ],
- "cases/comments": [
- "2019-01-01-preview"
- ],
- "cases/relations": [
- "2019-01-01-preview"
- ],
- "dataConnectors": [
- "2019-01-01-preview",
- "2020-01-01",
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "entityQueries": [
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "fileImports": [
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "incidents": [
- "2019-01-01-preview",
- "2020-01-01",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "incidents/comments": [
- "2019-01-01-preview",
- "2020-01-01",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "incidents/relations": [
- "2019-01-01-preview",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "incidents/tasks": [
- "2022-12-01-preview"
- ],
- "metadata": [
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "onboardingStates": [
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "securityMLAnalyticsSettings": [
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "settings": [
- "2019-01-01-preview",
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "sourcecontrols": [
- "2021-03-01-preview",
- "2021-09-01-preview",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "threatIntelligence/indicators": [
- "2019-01-01-preview",
- "2021-04-01",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "watchlists": [
- "2019-01-01-preview",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ],
- "watchlists/watchlistItems": [
- "2019-01-01-preview",
- "2021-03-01-preview",
- "2021-04-01",
- "2021-09-01-preview",
- "2021-10-01",
- "2021-10-01-preview",
- "2022-01-01-preview",
- "2022-04-01-preview",
- "2022-05-01-preview",
- "2022-06-01-preview",
- "2022-07-01-preview",
- "2022-08-01",
- "2022-08-01-preview",
- "2022-09-01-preview",
- "2022-10-01-preview",
- "2022-11-01",
- "2022-11-01-preview",
- "2022-12-01-preview"
- ]
- },
- "Microsoft.SerialConsole": {
- "serialPorts": [
- "2018-05-01"
- ]
- },
- "Microsoft.ServiceBus": {
- "namespaces": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/AuthorizationRules": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/disasterRecoveryConfigs": [
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/ipfilterrules": [
- "2018-01-01-preview"
- ],
- "namespaces/messagingplan": [
- "2014-09-01"
- ],
- "namespaces/migrationConfigurations": [
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/networkRuleSets": [
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/privateEndpointConnections": [
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/queues": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/queues/authorizationRules": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/topics": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/topics/authorizationRules": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/topics/subscriptions": [
- "2014-09-01",
- "2015-08-01",
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/topics/subscriptions/rules": [
- "2017-04-01",
- "2018-01-01-preview",
- "2021-01-01-preview",
- "2021-06-01-preview",
- "2021-11-01",
- "2022-01-01-preview",
- "2022-10-01-preview"
- ],
- "namespaces/virtualnetworkrules": [
- "2018-01-01-preview"
- ]
- },
- "Microsoft.ServiceFabric": {
- "clusters": [
- "2016-09-01",
- "2017-07-01-preview",
- "2018-02-01",
- "2019-03-01",
- "2019-03-01-preview",
- "2019-06-01-preview",
- "2019-11-01-preview",
- "2020-03-01",
- "2020-12-01-preview",
- "2021-06-01"
- ],
- "clusters/applications": [
- "2017-07-01-preview",
- "2019-03-01",
- "2019-03-01-preview",
- "2019-06-01-preview",
- "2019-11-01-preview",
- "2020-03-01",
- "2020-12-01-preview",
- "2021-06-01"
- ],
- "clusters/applications/services": [
- "2017-07-01-preview",
- "2019-03-01",
- "2019-03-01-preview",
- "2019-06-01-preview",
- "2019-11-01-preview",
- "2020-03-01",
- "2020-12-01-preview",
- "2021-06-01"
- ],
- "clusters/applicationTypes": [
- "2017-07-01-preview",
- "2019-03-01",
- "2019-03-01-preview",
- "2019-06-01-preview",
- "2019-11-01-preview",
- "2020-03-01",
- "2020-12-01-preview",
- "2021-06-01"
- ],
- "clusters/applicationTypes/versions": [
- "2017-07-01-preview",
- "2019-03-01",
- "2019-03-01-preview",
- "2019-06-01-preview",
- "2019-11-01-preview",
- "2020-03-01",
- "2020-12-01-preview",
- "2021-06-01"
- ],
- "managedClusters": [
- "2020-01-01-preview",
- "2021-01-01-preview",
- "2021-05-01",
- "2021-07-01-preview",
- "2021-09-01-privatepreview",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-06-01-preview",
- "2022-08-01-preview"
- ],
- "managedclusters/applications": [
- "2021-01-01-preview",
- "2021-05-01",
- "2021-07-01-preview",
- "2021-09-01-privatepreview",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-06-01-preview",
- "2022-08-01-preview"
- ],
- "managedclusters/applications/services": [
- "2021-01-01-preview",
- "2021-05-01",
- "2021-07-01-preview",
- "2021-09-01-privatepreview",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-06-01-preview",
- "2022-08-01-preview"
- ],
- "managedclusters/applicationTypes": [
- "2021-01-01-preview",
- "2021-05-01",
- "2021-07-01-preview",
- "2021-09-01-privatepreview",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-06-01-preview",
- "2022-08-01-preview"
- ],
- "managedclusters/applicationTypes/versions": [
- "2021-01-01-preview",
- "2021-05-01",
- "2021-07-01-preview",
- "2021-09-01-privatepreview",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-06-01-preview",
- "2022-08-01-preview"
- ],
- "managedClusters/nodeTypes": [
- "2020-01-01-preview",
- "2021-01-01-preview",
- "2021-05-01",
- "2021-07-01-preview",
- "2021-09-01-privatepreview",
- "2021-11-01-preview",
- "2022-01-01",
- "2022-02-01-preview",
- "2022-06-01-preview",
- "2022-08-01-preview"
- ]
- },
- "Microsoft.ServiceFabricMesh": {
- "applications": [
- "2018-07-01-preview",
- "2018-09-01-preview"
- ],
- "gateways": [
- "2018-09-01-preview"
- ],
- "networks": [
- "2018-07-01-preview",
- "2018-09-01-preview"
- ],
- "secrets": [
- "2018-09-01-preview"
- ],
- "secrets/values": [
- "2018-09-01-preview"
- ],
- "volumes": [
- "2018-07-01-preview",
- "2018-09-01-preview"
- ]
- },
- "Microsoft.ServiceLinker": {
- "dryruns": [
- "2022-11-01-preview"
- ],
- "linkers": [
- "2021-11-01-preview",
- "2022-01-01-preview",
- "2022-05-01",
- "2022-11-01-preview"
- ],
- "locations/connectors": [
- "2022-11-01-preview"
- ],
- "locations/dryruns": [
- "2022-11-01-preview"
- ]
- },
- "Microsoft.ServiceNetworking": {
- "trafficControllers": [
- "2022-10-01-preview"
- ],
- "trafficControllers/associations": [
- "2022-10-01-preview"
- ],
- "trafficControllers/frontends": [
- "2022-10-01-preview"
- ]
- },
- "Microsoft.SignalRService": {
- "signalR": [
- "2018-03-01-preview",
- "2018-10-01",
- "2020-05-01",
- "2020-07-01-preview",
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2022-02-01",
- "2022-08-01-preview"
- ],
- "signalR/customCertificates": [
- "2022-02-01",
- "2022-08-01-preview"
- ],
- "signalR/customDomains": [
- "2022-02-01",
- "2022-08-01-preview"
- ],
- "signalR/privateEndpointConnections": [
- "2020-05-01",
- "2020-07-01-preview",
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2022-02-01",
- "2022-08-01-preview"
- ],
- "signalR/sharedPrivateLinkResources": [
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2022-02-01",
- "2022-08-01-preview"
- ],
- "webPubSub": [
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2022-08-01-preview"
- ],
- "webPubSub/customCertificates": [
- "2022-08-01-preview"
- ],
- "webPubSub/customDomains": [
- "2022-08-01-preview"
- ],
- "webPubSub/hubs": [
- "2021-10-01",
- "2022-08-01-preview"
- ],
- "webPubSub/privateEndpointConnections": [
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2022-08-01-preview"
- ],
- "webPubSub/sharedPrivateLinkResources": [
- "2021-04-01-preview",
- "2021-06-01-preview",
- "2021-09-01-preview",
- "2021-10-01",
- "2022-08-01-preview"
- ]
- },
- "Microsoft.SoftwarePlan": {
- "hybridUseBenefits": [
- "2019-06-01-preview",
- "2019-12-01"
- ]
- },
- "Microsoft.Solutions": {
- "applianceDefinitions": [
- "2016-09-01-preview"
- ],
- "appliances": [
- "2016-09-01-preview"
- ],
- "applicationDefinitions": [
- "2017-09-01",
- "2017-12-01",
- "2018-02-01",
- "2018-03-01",
- "2018-06-01",
- "2018-09-01-preview",
- "2019-07-01",
- "2020-08-21-preview",
- "2021-02-01-preview",
- "2021-07-01"
- ],
- "applications": [
- "2017-09-01",
- "2017-12-01",
- "2018-02-01",
- "2018-03-01",
- "2018-06-01",
- "2018-09-01-preview",
- "2019-07-01",
- "2020-08-21-preview",
- "2021-02-01-preview",
- "2021-07-01"
- ],
- "jitRequests": [
- "2018-03-01",
- "2018-06-01",
- "2018-09-01-preview",
- "2019-07-01",
- "2020-08-21-preview",
- "2021-02-01-preview",
- "2021-07-01"
- ]
- },
- "Microsoft.Sql": {
- "instancePools": [
- "2018-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "locations/instanceFailoverGroups": [
- "2017-10-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "locations/serverTrustGroups": [
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances": [
- "2015-05-01-preview",
- "2018-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/administrators": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/advancedThreatProtectionSettings": [
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/azureADOnlyAuthentications": [
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases": [
- "2017-03-01-preview",
- "2018-06-01-preview",
- "2019-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases/advancedThreatProtectionSettings": [
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases/backupLongTermRetentionPolicies": [
- "2018-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases/backupShortTermRetentionPolicies": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases/schemas/tables/columns/sensitivityLabels": [
- "2018-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases/securityAlertPolicies": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases/transparentDataEncryption": [
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases/vulnerabilityAssessments": [
- "2017-10-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/databases/vulnerabilityAssessments/rules/baselines": [
- "2017-10-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/distributedAvailabilityGroups": [
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/dnsAliases": [
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/dtc": [
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/encryptionProtector": [
- "2017-10-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/keys": [
- "2017-10-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/privateEndpointConnections": [
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/securityAlertPolicies": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/serverTrustCertificates": [
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/sqlAgent": [
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "managedInstances/vulnerabilityAssessments": [
- "2018-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers": [
- "2014-04-01",
- "2015-05-01-preview",
- "2019-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/administrators": [
- "2014-04-01",
- "2018-06-01-preview",
- "2019-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/advancedThreatProtectionSettings": [
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/advisors": [
- "2014-04-01"
- ],
- "servers/auditingPolicies": [
- "2014-04-01"
- ],
- "servers/auditingSettings": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/azureADOnlyAuthentications": [
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/communicationLinks": [
- "2014-04-01"
- ],
- "servers/connectionPolicies": [
- "2014-04-01",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases": [
- "2014-04-01",
- "2017-03-01-preview",
- "2017-10-01-preview",
- "2019-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/advancedThreatProtectionSettings": [
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/advisors": [
- "2014-04-01"
- ],
- "servers/databases/auditingPolicies": [
- "2014-04-01"
- ],
- "servers/databases/auditingSettings": [
- "2015-05-01-preview",
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/backupLongTermRetentionPolicies": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/backupShortTermRetentionPolicies": [
- "2017-10-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/connectionPolicies": [
- "2014-04-01"
- ],
- "servers/databases/dataMaskingPolicies": [
- "2014-04-01",
- "2021-11-01",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/dataMaskingPolicies/rules": [
- "2014-04-01",
- "2021-11-01",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/extendedAuditingSettings": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/extensions": [
- "2014-04-01",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/geoBackupPolicies": [
- "2014-04-01",
- "2021-11-01",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/ledgerDigestUploads": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/maintenanceWindows": [
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/schemas/tables/columns/sensitivityLabels": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/securityAlertPolicies": [
- "2014-04-01",
- "2018-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/sqlVulnerabilityAssessments/baselines": [
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/sqlVulnerabilityAssessments/baselines/rules": [
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/syncGroups": [
- "2015-05-01-preview",
- "2019-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/syncGroups/syncMembers": [
- "2015-05-01-preview",
- "2019-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/transparentDataEncryption": [
- "2014-04-01",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/vulnerabilityAssessments": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/vulnerabilityAssessments/rules/baselines": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/workloadGroups": [
- "2019-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/databases/workloadGroups/workloadClassifiers": [
- "2019-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/devOpsAuditingSettings": [
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/disasterRecoveryConfiguration": [
- "2014-04-01"
- ],
- "servers/dnsAliases": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/elasticPools": [
- "2014-04-01",
- "2017-10-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/encryptionProtector": [
- "2015-05-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/extendedAuditingSettings": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/failoverGroups": [
- "2015-05-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/firewallRules": [
- "2014-04-01",
- "2015-05-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/ipv6FirewallRules": [
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/jobAgents": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/jobAgents/credentials": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/jobAgents/jobs": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/jobAgents/jobs/executions": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/jobAgents/jobs/steps": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/jobAgents/targetGroups": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/keys": [
- "2015-05-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/outboundFirewallRules": [
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/privateEndpointConnections": [
- "2018-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/securityAlertPolicies": [
- "2017-03-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/sqlVulnerabilityAssessments": [
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/sqlVulnerabilityAssessments/baselines": [
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/sqlVulnerabilityAssessments/baselines/rules": [
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/syncAgents": [
- "2015-05-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/virtualNetworkRules": [
- "2015-05-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ],
- "servers/vulnerabilityAssessments": [
- "2018-06-01-preview",
- "2020-02-02-preview",
- "2020-08-01-preview",
- "2020-11-01-preview",
- "2021-02-01-preview",
- "2021-05-01-preview",
- "2021-08-01-preview",
- "2021-11-01",
- "2021-11-01-preview",
- "2022-02-01-preview",
- "2022-05-01-preview"
- ]
- },
- "Microsoft.SqlVirtualMachine": {
- "sqlVirtualMachineGroups": [
- "2017-03-01-preview",
- "2021-11-01-preview",
- "2022-02-01",
- "2022-02-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview"
- ],
- "sqlVirtualMachineGroups/availabilityGroupListeners": [
- "2017-03-01-preview",
- "2021-11-01-preview",
- "2022-02-01",
- "2022-02-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview"
- ],
- "sqlVirtualMachines": [
- "2017-03-01-preview",
- "2021-11-01-preview",
- "2022-02-01",
- "2022-02-01-preview",
- "2022-07-01-preview",
- "2022-08-01-preview"
- ]
- },
- "Microsoft.Storage": {
- "storageAccounts": [
- "2015-05-01-preview",
- "2015-06-15",
- "2016-01-01",
- "2016-05-01",
- "2016-12-01",
- "2017-06-01",
- "2017-10-01",
- "2018-02-01",
- "2018-03-01-preview",
- "2018-07-01",
- "2018-11-01",
- "2019-04-01",
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/blobServices": [
- "2018-07-01",
- "2018-11-01",
- "2019-04-01",
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/blobServices/containers": [
- "2018-02-01",
- "2018-03-01-preview",
- "2018-07-01",
- "2018-11-01",
- "2019-04-01",
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/blobServices/containers/immutabilityPolicies": [
- "2018-02-01",
- "2018-03-01-preview",
- "2018-07-01",
- "2018-11-01",
- "2019-04-01",
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/encryptionScopes": [
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/fileServices": [
- "2019-04-01",
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/fileServices/shares": [
- "2019-04-01",
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/inventoryPolicies": [
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/localUsers": [
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/managementPolicies": [
- "2018-03-01-preview",
- "2018-11-01",
- "2019-04-01",
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/objectReplicationPolicies": [
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/privateEndpointConnections": [
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/queueServices": [
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/queueServices/queues": [
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/tableServices": [
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ],
- "storageAccounts/tableServices/tables": [
- "2019-06-01",
- "2020-08-01-preview",
- "2021-01-01",
- "2021-02-01",
- "2021-04-01",
- "2021-06-01",
- "2021-08-01",
- "2021-09-01",
- "2022-05-01",
- "2022-09-01"
- ]
- },
- "Microsoft.Storage.Admin": {
- "locations/quotas": [
- "2019-08-08"
- ],
- "locations/settings": [
- "2019-08-08"
- ],
- "storageServices": [
- "2019-08-08"
- ]
- },
- "Microsoft.StorageCache": {
- "caches": [
- "2019-08-01-preview",
- "2019-11-01",
- "2020-03-01",
- "2020-10-01",
- "2021-03-01",
- "2021-05-01",
- "2021-09-01",
- "2022-01-01",
- "2022-05-01"
- ],
- "caches/storageTargets": [
- "2019-08-01-preview",
- "2019-11-01",
- "2020-03-01",
- "2020-10-01",
- "2021-03-01",
- "2021-05-01",
- "2021-09-01",
- "2022-01-01",
- "2022-05-01"
- ]
- },
- "Microsoft.StorageMover": {
- "storageMovers": [
- "2022-07-01-preview"
- ],
- "storageMovers/agents": [
- "2022-07-01-preview"
- ],
- "storageMovers/endpoints": [
- "2022-07-01-preview"
- ],
- "storageMovers/projects": [
- "2022-07-01-preview"
- ],
- "storageMovers/projects/jobDefinitions": [
- "2022-07-01-preview"
- ]
- },
- "Microsoft.StoragePool": {
- "diskPools": [
- "2020-03-15-preview",
- "2021-04-01-preview",
- "2021-08-01"
- ],
- "diskPools/iscsiTargets": [
- "2020-03-15-preview",
- "2021-04-01-preview",
- "2021-08-01"
- ]
- },
- "Microsoft.StorageSync": {
- "storageSyncServices": [
- "2017-06-05-preview",
- "2018-04-02",
- "2018-07-01",
- "2018-10-01",
- "2019-02-01",
- "2019-03-01",
- "2019-06-01",
- "2019-10-01",
- "2020-03-01",
- "2020-09-01",
- "2022-06-01"
- ],
- "storageSyncServices/privateEndpointConnections": [
- "2020-03-01",
- "2020-09-01",
- "2022-06-01"
- ],
- "storageSyncServices/registeredServers": [
- "2017-06-05-preview",
- "2018-04-02",
- "2018-07-01",
- "2018-10-01",
- "2019-02-01",
- "2019-03-01",
- "2019-06-01",
- "2019-10-01",
- "2020-03-01",
- "2020-09-01",
- "2022-06-01"
- ],
- "storageSyncServices/syncGroups": [
- "2017-06-05-preview",
- "2018-04-02",
- "2018-07-01",
- "2018-10-01",
- "2019-02-01",
- "2019-03-01",
- "2019-06-01",
- "2019-10-01",
- "2020-03-01",
- "2020-09-01",
- "2022-06-01"
- ],
- "storageSyncServices/syncGroups/cloudEndpoints": [
- "2017-06-05-preview",
- "2018-04-02",
- "2018-07-01",
- "2018-10-01",
- "2019-02-01",
- "2019-03-01",
- "2019-06-01",
- "2019-10-01",
- "2020-03-01",
- "2020-09-01",
- "2022-06-01"
- ],
- "storageSyncServices/syncGroups/serverEndpoints": [
- "2017-06-05-preview",
- "2018-04-02",
- "2018-07-01",
- "2018-10-01",
- "2019-02-01",
- "2019-03-01",
- "2019-06-01",
- "2019-10-01",
- "2020-03-01",
- "2020-09-01",
- "2022-06-01"
- ]
- },
- "Microsoft.StorSimple": {
- "managers": [
- "2016-10-01",
- "2017-06-01"
- ],
- "managers/accessControlRecords": [
- "2016-10-01",
- "2017-06-01"
- ],
- "managers/bandwidthSettings": [
- "2017-06-01"
- ],
- "managers/certificates": [
- "2016-10-01"
- ],
- "managers/devices/alertSettings": [
- "2016-10-01",
- "2017-06-01"
- ],
- "managers/devices/backupPolicies": [
- "2017-06-01"
- ],
- "managers/devices/backupPolicies/schedules": [
- "2017-06-01"
- ],
- "managers/devices/backupScheduleGroups": [
- "2016-10-01"
- ],
- "managers/devices/chapSettings": [
- "2016-10-01"
- ],
- "managers/devices/fileservers": [
- "2016-10-01"
- ],
- "managers/devices/fileservers/shares": [
- "2016-10-01"
- ],
- "managers/devices/iscsiservers": [
- "2016-10-01"
- ],
- "managers/devices/iscsiservers/disks": [
- "2016-10-01"
- ],
- "managers/devices/timeSettings": [
- "2017-06-01"
- ],
- "managers/devices/volumeContainers": [
- "2017-06-01"
- ],
- "managers/devices/volumeContainers/volumes": [
- "2017-06-01"
- ],
- "managers/extendedInformation": [
- "2016-10-01",
- "2017-06-01"
- ],
- "managers/storageAccountCredentials": [
- "2016-10-01",
- "2017-06-01"
- ],
- "managers/storageDomains": [
- "2016-10-01"
- ]
- },
- "Microsoft.StreamAnalytics": {
- "clusters": [
- "2020-03-01",
- "2020-03-01-preview"
- ],
- "clusters/privateEndpoints": [
- "2020-03-01",
- "2020-03-01-preview"
- ],
- "streamingjobs": [
- "2016-03-01",
- "2017-04-01-preview",
- "2020-03-01",
- "2021-10-01-preview"
- ],
- "streamingjobs/functions": [
- "2016-03-01",
- "2017-04-01-preview",
- "2020-03-01",
- "2021-10-01-preview"
- ],
- "streamingjobs/inputs": [
- "2016-03-01",
- "2017-04-01-preview",
- "2020-03-01",
- "2021-10-01-preview"
- ],
- "streamingjobs/outputs": [
- "2016-03-01",
- "2017-04-01-preview",
- "2020-03-01",
- "2021-10-01-preview"
- ],
- "streamingjobs/transformations": [
- "2016-03-01",
- "2017-04-01-preview",
- "2020-03-01",
- "2021-10-01-preview"
- ]
- },
- "Microsoft.Subscription": {
- "aliases": [
- "2019-10-01-preview",
- "2020-09-01",
- "2021-10-01"
- ],
- "policies": [
- "2021-10-01"
- ],
- "subscriptionDefinitions": [
- "2017-11-01-preview"
- ]
- },
- "Microsoft.Subscriptions.Admin": {
- "directoryTenants": [
- "2015-11-01"
- ],
- "locations": [
- "2015-11-01"
- ],
- "offers": [
- "2015-11-01"
- ],
- "offers/offerDelegations": [
- "2015-11-01"
- ],
- "plans": [
- "2015-11-01"
- ],
- "subscriptions": [
- "2015-11-01"
- ],
- "subscriptions/acquiredPlans": [
- "2015-11-01"
- ]
- },
- "Microsoft.Support": {
- "supportTickets": [
- "2019-05-01-preview",
- "2020-04-01"
- ],
- "supportTickets/communications": [
- "2019-05-01-preview",
- "2020-04-01"
- ]
- },
- "Microsoft.Synapse": {
- "privateLinkHubs": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/administrators": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/auditingSettings": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/azureADOnlyAuthentications": [
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/bigDataPools": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/dedicatedSQLminimalTlsSettings": [
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/encryptionProtector": [
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/extendedAuditingSettings": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/firewallRules": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/integrationRuntimes": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/keys": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/kustoPools": [
- "2021-04-01-preview",
- "2021-06-01-preview"
- ],
- "workspaces/kustoPools/attachedDatabaseConfigurations": [
- "2021-06-01-preview"
- ],
- "workspaces/kustoPools/databases": [
- "2021-04-01-preview",
- "2021-06-01-preview"
- ],
- "workspaces/kustoPools/databases/dataConnections": [
- "2021-04-01-preview",
- "2021-06-01-preview"
- ],
- "workspaces/kustoPools/databases/principalAssignments": [
- "2021-04-01-preview",
- "2021-06-01-preview"
- ],
- "workspaces/kustoPools/principalAssignments": [
- "2021-04-01-preview",
- "2021-06-01-preview"
- ],
- "workspaces/managedIdentitySqlControlSettings": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/privateEndpointConnections": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/securityAlertPolicies": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlAdministrators": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlDatabases": [
- "2020-04-01-preview"
- ],
- "workspaces/sqlPools": [
- "2019-06-01-preview",
- "2020-04-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/auditingSettings": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/dataMaskingPolicies": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/dataMaskingPolicies/rules": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/extendedAuditingSettings": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/geoBackupPolicies": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/maintenancewindows": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/metadataSync": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/schemas/tables/columns/sensitivityLabels": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/securityAlertPolicies": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/transparentDataEncryption": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/vulnerabilityAssessments": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/vulnerabilityAssessments/rules/baselines": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/workloadGroups": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/sqlPools/workloadGroups/workloadClassifiers": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ],
- "workspaces/trustedServiceByPassConfiguration": [
- "2021-06-01-preview"
- ],
- "workspaces/vulnerabilityAssessments": [
- "2019-06-01-preview",
- "2020-12-01",
- "2021-03-01",
- "2021-04-01-preview",
- "2021-05-01",
- "2021-06-01",
- "2021-06-01-preview"
- ]
- },
- "Microsoft.Syntex": {
- "documentProcessors": [
- "2022-09-15-preview"
- ]
- },
- "Microsoft.TestBase": {
- "testBaseAccounts": [
- "2020-12-16-preview",
- "2022-04-01-preview"
- ],
- "testBaseAccounts/customerEvents": [
- "2020-12-16-preview",
- "2022-04-01-preview"
- ],
- "testBaseAccounts/packages": [
- "2020-12-16-preview",
- "2022-04-01-preview"
- ],
- "testBaseAccounts/packages/favoriteProcesses": [
- "2020-12-16-preview",
- "2022-04-01-preview"
- ]
- },
- "Microsoft.TimeSeriesInsights": {
- "environments": [
- "2017-02-28-preview",
- "2017-11-15",
- "2018-08-15-preview",
- "2020-05-15",
- "2021-03-31-preview",
- "2021-06-30-preview"
- ],
- "environments/accessPolicies": [
- "2017-02-28-preview",
- "2017-11-15",
- "2018-08-15-preview",
- "2020-05-15",
- "2021-03-31-preview",
- "2021-06-30-preview"
- ],
- "environments/eventSources": [
- "2017-02-28-preview",
- "2017-11-15",
- "2018-08-15-preview",
- "2020-05-15",
- "2021-03-31-preview",
- "2021-06-30-preview"
- ],
- "environments/privateEndpointConnections": [
- "2021-03-31-preview"
- ],
- "environments/referenceDataSets": [
- "2017-02-28-preview",
- "2017-11-15",
- "2018-08-15-preview",
- "2020-05-15",
- "2021-03-31-preview",
- "2021-06-30-preview"
- ]
- },
- "Microsoft.VideoIndexer": {
- "accounts": [
- "2021-10-18-preview",
- "2021-10-27-preview",
- "2021-11-10-preview",
- "2022-04-13-preview",
- "2022-07-20-preview",
- "2022-08-01"
- ]
- },
- "Microsoft.VirtualMachineImages": {
- "imageTemplates": [
- "2018-02-01-preview",
- "2019-02-01-preview",
- "2019-05-01-preview",
- "2020-02-14",
- "2021-10-01",
- "2022-02-14"
- ]
- },
- "microsoft.visualstudio": {
- "account": [
- "2014-04-01-preview",
- "2017-11-01-preview"
- ],
- "account/extension": [
- "2014-04-01-preview",
- "2017-11-01-preview"
- ],
- "account/project": [
- "2014-04-01-preview",
- "2017-11-01-preview",
- "2018-08-01-preview"
- ]
- },
- "Microsoft.VMwareCloudSimple": {
- "dedicatedCloudNodes": [
- "2019-04-01"
- ],
- "dedicatedCloudServices": [
- "2019-04-01"
- ],
- "virtualMachines": [
- "2019-04-01"
- ]
- },
- "Microsoft.VoiceServices": {
- "communicationsGateways": [
- "2022-12-01-preview"
- ],
- "communicationsGateways/contacts": [
- "2022-12-01-preview"
- ],
- "communicationsGateways/testLines": [
- "2022-12-01-preview"
- ]
- },
- "Microsoft.Web": {
- "certificates": [
- "2015-08-01",
- "2016-03-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "connectionGateways": [
- "2016-06-01"
- ],
- "connections": [
- "2015-08-01-preview",
- "2016-06-01"
- ],
- "containerApps": [
- "2021-03-01",
- "2022-03-01"
- ],
- "csrs": [
- "2015-08-01"
- ],
- "customApis": [
- "2016-06-01"
- ],
- "hostingEnvironments": [
- "2015-08-01",
- "2016-09-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "hostingEnvironments/configurations": [
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "hostingEnvironments/multiRolePools": [
- "2015-08-01",
- "2016-09-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "hostingEnvironments/privateEndpointConnections": [
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "hostingEnvironments/workerPools": [
- "2015-08-01",
- "2016-09-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "kubeEnvironments": [
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "managedHostingEnvironments": [
- "2015-08-01"
- ],
- "publishingCredentials": [
- "2015-08-01"
- ],
- "publishingUsers": [
- "2015-08-01",
- "2016-03-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "serverfarms": [
- "2015-08-01",
- "2016-09-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "serverfarms/virtualNetworkConnections/gateways": [
- "2015-08-01",
- "2016-09-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "serverfarms/virtualNetworkConnections/routes": [
- "2015-08-01",
- "2016-09-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/backups": [
- "2015-08-01",
- "2016-08-01"
- ],
- "sites/basicPublishingCredentialsPolicies": [
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/config": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/deployments": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/domainOwnershipIdentifiers": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/extensions": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/functions": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/functions/keys": [
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/host/{keyType}": [
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/hostNameBindings": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/hybridconnection": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/hybridConnectionNamespaces/relays": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/instances/deployments": [
- "2015-08-01"
- ],
- "sites/instances/extensions": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/migrate": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/networkConfig": [
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/premieraddons": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/privateAccess": [
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/privateEndpointConnections": [
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/publicCertificates": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/siteextensions": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/backups": [
- "2015-08-01",
- "2016-08-01"
- ],
- "sites/slots/basicPublishingCredentialsPolicies": [
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/config": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/deployments": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/domainOwnershipIdentifiers": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/extensions": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/functions": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/functions/keys": [
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/host/{keyType}": [
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/hostNameBindings": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/hybridconnection": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/hybridConnectionNamespaces/relays": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/instances/deployments": [
- "2015-08-01"
- ],
- "sites/slots/instances/extensions": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/networkConfig": [
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/premieraddons": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/privateAccess": [
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/privateEndpointConnections": [
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/publicCertificates": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/siteextensions": [
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/snapshots": [
- "2015-08-01"
- ],
- "sites/slots/sourcecontrols": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/virtualNetworkConnections": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/slots/virtualNetworkConnections/gateways": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/snapshots": [
- "2015-08-01"
- ],
- "sites/sourcecontrols": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/virtualNetworkConnections": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sites/virtualNetworkConnections/gateways": [
- "2015-08-01",
- "2016-08-01",
- "2018-02-01",
- "2018-11-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "sourcecontrols": [
- "2015-08-01",
- "2016-03-01",
- "2018-02-01",
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "staticSites": [
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "staticSites/builds/config": [
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "staticSites/builds/linkedBackends": [
- "2022-03-01"
- ],
- "staticSites/builds/userProvidedFunctionApps": [
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "staticSites/config": [
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "staticSites/customDomains": [
- "2019-08-01",
- "2020-06-01",
- "2020-09-01",
- "2020-10-01",
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "staticSites/linkedBackends": [
- "2022-03-01"
- ],
- "staticSites/privateEndpointConnections": [
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ],
- "staticSites/userProvidedFunctionApps": [
- "2020-12-01",
- "2021-01-01",
- "2021-01-15",
- "2021-02-01",
- "2021-03-01",
- "2022-03-01"
- ]
- },
- "Microsoft.WindowsESU": {
- "multipleActivationKeys": [
- "2019-09-16-preview"
- ]
- },
- "Microsoft.WindowsIoT": {
- "deviceServices": [
- "2018-02-16-preview",
- "2019-06-01"
- ]
- },
- "Microsoft.WorkloadMonitor": {
- "notificationSettings": [
- "2018-08-31-preview"
- ]
- },
- "Microsoft.Workloads": {
- "monitors": [
- "2021-12-01-preview"
- ],
- "monitors/providerInstances": [
- "2021-12-01-preview"
- ],
- "phpWorkloads": [
- "2021-12-01-preview"
- ],
- "phpWorkloads/wordpressInstances": [
- "2021-12-01-preview"
- ],
- "sapVirtualInstances": [
- "2021-12-01-preview"
- ],
- "sapVirtualInstances/applicationInstances": [
- "2021-12-01-preview"
- ],
- "sapVirtualInstances/centralInstances": [
- "2021-12-01-preview"
- ],
- "sapVirtualInstances/databaseInstances": [
- "2021-12-01-preview"
- ]
- }
+ "Microsoft.AAD": {
+ "domainServices": [
+ "2017-01-01",
+ "2017-06-01",
+ "2020-01-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2022-09-01",
+ "2022-12-01"
+ ],
+ "domainServices/ouContainer": [
+ "2017-06-01",
+ "2020-01-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2022-09-01",
+ "2022-12-01"
+ ]
+ },
+ "microsoft.aadiam": {
+ "azureADMetrics": [
+ "2020-07-01-preview"
+ ],
+ "diagnosticSettings": [
+ "2017-04-01",
+ "2017-04-01-preview"
+ ],
+ "privateLinkForAzureAd": [
+ "2020-03-01",
+ "2020-03-01-preview"
+ ],
+ "privateLinkForAzureAd/privateEndpointConnections": [
+ "2020-03-01"
+ ]
+ },
+ "Microsoft.Addons": {
+ "supportProviders/supportPlanTypes": [
+ "2017-05-15",
+ "2018-03-01"
+ ]
+ },
+ "Microsoft.Advisor": {
+ "configurations": [
+ "2017-04-19",
+ "2020-01-01",
+ "2022-09-01"
+ ],
+ "recommendations/suppressions": [
+ "2016-07-12-preview",
+ "2017-03-31",
+ "2017-04-19",
+ "2020-01-01",
+ "2022-09-01"
+ ]
+ },
+ "Microsoft.AgFoodPlatform": {
+ "farmBeats": [
+ "2020-05-12-preview",
+ "2021-09-01-preview"
+ ],
+ "farmBeats/extensions": [
+ "2020-05-12-preview",
+ "2021-09-01-preview"
+ ],
+ "farmBeats/privateEndpointConnections": [
+ "2021-09-01-preview"
+ ],
+ "farmBeats/solutions": [
+ "2021-09-01-preview"
+ ]
+ },
+ "Microsoft.AlertsManagement": {
+ "actionRules": [
+ "2018-11-02-privatepreview",
+ "2019-05-05-preview",
+ "2021-08-08",
+ "2021-08-08-preview"
+ ],
+ "prometheusRuleGroups": [
+ "2021-07-22-preview"
+ ],
+ "smartDetectorAlertRules": [
+ "2019-03-01",
+ "2019-06-01",
+ "2021-04-01"
+ ]
+ },
+ "Microsoft.AnalysisServices": {
+ "servers": [
+ "2016-05-16",
+ "2017-07-14",
+ "2017-08-01",
+ "2017-08-01-beta"
+ ]
+ },
+ "Microsoft.ApiManagement": {
+ "service": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/api-version-sets": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview"
+ ],
+ "service/apis": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/diagnostics": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/diagnostics/loggers": [
+ "2017-03-01",
+ "2018-01-01"
+ ],
+ "service/apis/issues": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/issues/attachments": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/issues/comments": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/operations": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/operations/policies": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/operations/policy": [
+ "2016-10-10"
+ ],
+ "service/apis/operations/tags": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/policies": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/policy": [
+ "2016-10-10"
+ ],
+ "service/apis/releases": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/schemas": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/tagDescriptions": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apis/tags": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/apiVersionSets": [
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/authorizationProviders": [
+ "2022-04-01-preview"
+ ],
+ "service/authorizationProviders/authorizations": [
+ "2022-04-01-preview"
+ ],
+ "service/authorizationProviders/authorizations/accessPolicies": [
+ "2022-04-01-preview"
+ ],
+ "service/authorizationServers": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/backends": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/caches": [
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/certificates": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/contentTypes": [
+ "2019-12-01",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/contentTypes/contentItems": [
+ "2019-12-01",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/diagnostics": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/diagnostics/loggers": [
+ "2017-03-01",
+ "2018-01-01"
+ ],
+ "service/gateways": [
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/gateways/apis": [
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/gateways/certificateAuthorities": [
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/gateways/hostnameConfigurations": [
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/groups": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/groups/users": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/identityProviders": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/loggers": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/namedValues": [
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/notifications": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/notifications/recipientEmails": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/notifications/recipientUsers": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/openidConnectProviders": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/policies": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/policyFragments": [
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/portalconfigs": [
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/portalRevisions": [
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/portalsettings": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/privateEndpointConnections": [
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/products": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/products/apis": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/products/groups": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/products/policies": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/products/policy": [
+ "2016-10-10"
+ ],
+ "service/products/tags": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/properties": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01"
+ ],
+ "service/schemas": [
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/subscriptions": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/tags": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/templates": [
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/tenant": [
+ "2016-10-10",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ],
+ "service/users": [
+ "2016-07-07",
+ "2016-10-10",
+ "2017-03-01",
+ "2018-01-01",
+ "2018-06-01-preview",
+ "2019-01-01",
+ "2019-12-01",
+ "2019-12-01-preview",
+ "2020-06-01-preview",
+ "2020-12-01",
+ "2021-01-01-preview",
+ "2021-04-01-preview",
+ "2021-08-01",
+ "2021-12-01-preview",
+ "2022-04-01-preview"
+ ]
+ },
+ "Microsoft.App": {
+ "connectedEnvironments": [
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "connectedEnvironments/certificates": [
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "connectedEnvironments/daprComponents": [
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "connectedEnvironments/storages": [
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "containerApps": [
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "containerApps/authConfigs": [
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "containerApps/sourcecontrols": [
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "managedEnvironments": [
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "managedEnvironments/certificates": [
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "managedEnvironments/daprComponents": [
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "managedEnvironments/storages": [
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-06-01-preview",
+ "2022-10-01"
+ ]
+ },
+ "Microsoft.AppComplianceAutomation": {
+ "reports": [
+ "2022-11-16-preview"
+ ]
+ },
+ "Microsoft.AppConfiguration": {
+ "configurationStores": [
+ "2019-02-01-preview",
+ "2019-10-01",
+ "2019-11-01-preview",
+ "2020-06-01",
+ "2020-07-01-preview",
+ "2021-03-01-preview",
+ "2021-10-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01"
+ ],
+ "configurationStores/keyValues": [
+ "2020-07-01-preview",
+ "2021-03-01-preview",
+ "2021-10-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01"
+ ],
+ "configurationStores/privateEndpointConnections": [
+ "2019-11-01-preview",
+ "2020-06-01",
+ "2020-07-01-preview",
+ "2021-03-01-preview",
+ "2021-10-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01"
+ ],
+ "configurationStores/replicas": [
+ "2022-03-01-preview"
+ ]
+ },
+ "Microsoft.AppPlatform": {
+ "Spring": [
+ "2020-07-01",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/apiPortals": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/apiPortals/domains": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/applicationAccelerators": [
+ "2022-11-01-preview"
+ ],
+ "Spring/applicationAccelerators/customizedAccelerators": [
+ "2022-11-01-preview"
+ ],
+ "Spring/applicationLiveViews": [
+ "2022-11-01-preview"
+ ],
+ "Spring/apps": [
+ "2020-07-01",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/apps/bindings": [
+ "2020-07-01",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/apps/deployments": [
+ "2020-07-01",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/apps/domains": [
+ "2020-07-01",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/buildServices/agentPools": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/buildServices/builders": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/buildServices/builders/buildpackBindings": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/buildServices/builds": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/certificates": [
+ "2020-07-01",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/configServers": [
+ "2020-07-01",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/configurationServices": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/DevToolPortals": [
+ "2022-11-01-preview"
+ ],
+ "Spring/gateways": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/gateways/domains": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/gateways/routeConfigs": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/monitoringSettings": [
+ "2020-07-01",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/serviceRegistries": [
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-04-01",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ],
+ "Spring/storages": [
+ "2021-09-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01-preview",
+ "2022-05-01-preview",
+ "2022-09-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01"
+ ]
+ },
+ "Microsoft.Attestation": {
+ "attestationProviders": [
+ "2018-09-01-preview",
+ "2020-10-01",
+ "2021-06-01-preview"
+ ],
+ "attestationProviders/privateEndpointConnections": [
+ "2020-10-01",
+ "2021-06-01-preview"
+ ]
+ },
+ "Microsoft.Authorization": {
+ "accessReviewHistoryDefinitions": [
+ "2021-11-16-preview",
+ "2021-12-01-preview"
+ ],
+ "accessReviewScheduleDefinitions": [
+ "2018-05-01-preview",
+ "2021-03-01-preview",
+ "2021-07-01-preview",
+ "2021-11-16-preview",
+ "2021-12-01-preview"
+ ],
+ "accessReviewScheduleDefinitions/instances": [
+ "2021-07-01-preview",
+ "2021-11-16-preview",
+ "2021-12-01-preview"
+ ],
+ "accessReviewScheduleSettings": [
+ "2018-05-01-preview",
+ "2021-03-01-preview",
+ "2021-07-01-preview",
+ "2021-11-16-preview",
+ "2021-12-01-preview"
+ ],
+ "locks": [
+ "2015-01-01",
+ "2016-09-01",
+ "2017-04-01",
+ "2020-05-01"
+ ],
+ "policyAssignments": [
+ "2015-10-01-preview",
+ "2015-11-01",
+ "2016-04-01",
+ "2016-12-01",
+ "2017-06-01-preview",
+ "2018-03-01",
+ "2018-05-01",
+ "2019-01-01",
+ "2019-06-01",
+ "2019-09-01",
+ "2020-03-01",
+ "2020-09-01",
+ "2021-06-01",
+ "2022-06-01"
+ ],
+ "policydefinitions": [
+ "2015-10-01-preview",
+ "2015-11-01",
+ "2016-04-01",
+ "2016-12-01",
+ "2018-03-01",
+ "2018-05-01",
+ "2019-01-01",
+ "2019-06-01",
+ "2019-09-01",
+ "2020-03-01",
+ "2020-09-01",
+ "2021-06-01"
+ ],
+ "policyExemptions": [
+ "2020-07-01-preview",
+ "2022-07-01-preview"
+ ],
+ "policySetDefinitions": [
+ "2017-06-01-preview",
+ "2018-03-01",
+ "2018-05-01",
+ "2019-01-01",
+ "2019-06-01",
+ "2019-09-01",
+ "2020-03-01",
+ "2020-09-01",
+ "2021-06-01"
+ ],
+ "roleAssignmentApprovals/stages": [
+ "2021-01-01-preview"
+ ],
+ "roleAssignments": [
+ "2015-07-01",
+ "2017-10-01-preview",
+ "2018-01-01-preview",
+ "2018-09-01-preview",
+ "2020-03-01-preview",
+ "2020-04-01-preview",
+ "2020-08-01-preview",
+ "2020-10-01-preview",
+ "2022-04-01"
+ ],
+ "roleAssignmentScheduleRequests": [
+ "2020-10-01",
+ "2020-10-01-preview",
+ "2022-04-01-preview"
+ ],
+ "roleDefinitions": [
+ "2015-07-01",
+ "2018-01-01-preview",
+ "2022-04-01"
+ ],
+ "roleEligibilityScheduleRequests": [
+ "2020-10-01",
+ "2020-10-01-preview",
+ "2022-04-01-preview"
+ ],
+ "roleManagementPolicyAssignments": [
+ "2020-10-01",
+ "2020-10-01-preview"
+ ],
+ "variables": [
+ "2022-08-01-preview"
+ ],
+ "variables/values": [
+ "2022-08-01-preview"
+ ]
+ },
+ "Microsoft.Automanage": {
+ "accounts": [
+ "2020-06-30-preview"
+ ],
+ "configurationProfileAssignments": [
+ "2020-06-30-preview",
+ "2021-04-30-preview",
+ "2022-05-04"
+ ],
+ "configurationProfilePreferences": [
+ "2020-06-30-preview"
+ ],
+ "configurationProfiles": [
+ "2021-04-30-preview",
+ "2022-05-04"
+ ],
+ "configurationProfiles/versions": [
+ "2021-04-30-preview",
+ "2022-05-04"
+ ]
+ },
+ "Microsoft.Automation": {
+ "automationAccounts": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2021-06-22",
+ "2022-08-08"
+ ],
+ "automationAccounts/certificates": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/compilationjobs": [
+ "2015-10-31",
+ "2018-01-15",
+ "2019-06-01",
+ "2020-01-13-preview"
+ ],
+ "automationAccounts/configurations": [
+ "2015-10-31",
+ "2019-06-01",
+ "2022-08-08"
+ ],
+ "automationAccounts/connections": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/connectionTypes": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/credentials": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/hybridRunbookWorkerGroups": [
+ "2021-06-22",
+ "2022-02-22",
+ "2022-08-08"
+ ],
+ "automationAccounts/hybridRunbookWorkerGroups/hybridRunbookWorkers": [
+ "2021-06-22",
+ "2022-08-08"
+ ],
+ "automationAccounts/jobs": [
+ "2015-10-31",
+ "2017-05-15-preview",
+ "2019-06-01",
+ "2022-08-08"
+ ],
+ "automationAccounts/jobSchedules": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/modules": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/nodeConfigurations": [
+ "2015-10-31",
+ "2018-01-15",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/privateEndpointConnections": [
+ "2020-01-13-preview"
+ ],
+ "automationAccounts/python2Packages": [
+ "2018-06-30",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/python3Packages": [
+ "2022-08-08"
+ ],
+ "automationAccounts/runbooks": [
+ "2015-10-31",
+ "2018-06-30",
+ "2019-06-01",
+ "2022-08-08"
+ ],
+ "automationAccounts/runbooks/draft": [
+ "2015-10-31",
+ "2018-06-30",
+ "2019-06-01",
+ "2022-08-08"
+ ],
+ "automationAccounts/schedules": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/softwareUpdateConfigurations": [
+ "2017-05-15-preview",
+ "2019-06-01"
+ ],
+ "automationAccounts/sourceControls": [
+ "2017-05-15-preview",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/sourceControls/sourceControlSyncJobs": [
+ "2017-05-15-preview",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/variables": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview",
+ "2022-08-08"
+ ],
+ "automationAccounts/watchers": [
+ "2015-10-31",
+ "2019-06-01",
+ "2020-01-13-preview"
+ ],
+ "automationAccounts/webhooks": [
+ "2015-10-31"
+ ]
+ },
+ "Microsoft.AutonomousDevelopmentPlatform": {
+ "accounts": [
+ "2020-07-01-preview",
+ "2021-02-01-preview",
+ "2021-11-01-preview"
+ ],
+ "accounts/dataPools": [
+ "2020-07-01-preview",
+ "2021-02-01-preview",
+ "2021-11-01-preview"
+ ]
+ },
+ "Microsoft.AVS": {
+ "privateClouds": [
+ "2020-03-20",
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/addons": [
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/authorizations": [
+ "2020-03-20",
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/cloudLinks": [
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/clusters": [
+ "2020-03-20",
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/clusters/datastores": [
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/clusters/placementPolicies": [
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/globalReachConnections": [
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/hcxEnterpriseSites": [
+ "2020-03-20",
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/scriptExecutions": [
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/workloadNetworks/dhcpConfigurations": [
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/workloadNetworks/dnsServices": [
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/workloadNetworks/dnsZones": [
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/workloadNetworks/portMirroringProfiles": [
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/workloadNetworks/publicIPs": [
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/workloadNetworks/segments": [
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ],
+ "privateClouds/workloadNetworks/vmGroups": [
+ "2020-07-17-preview",
+ "2021-01-01-preview",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-05-01"
+ ]
+ },
+ "Microsoft.AzureActiveDirectory": {
+ "b2cDirectories": [
+ "2019-01-01-preview",
+ "2021-04-01"
+ ],
+ "guestUsages": [
+ "2020-05-01-preview",
+ "2021-04-01"
+ ]
+ },
+ "Microsoft.AzureArcData": {
+ "dataControllers": [
+ "2021-06-01-preview",
+ "2021-07-01-preview",
+ "2021-08-01",
+ "2021-11-01",
+ "2022-03-01-preview",
+ "2022-06-15-preview"
+ ],
+ "dataControllers/activeDirectoryConnectors": [
+ "2022-03-01-preview",
+ "2022-06-15-preview"
+ ],
+ "postgresInstances": [
+ "2021-06-01-preview",
+ "2021-07-01-preview",
+ "2022-03-01-preview",
+ "2022-06-15-preview"
+ ],
+ "sqlManagedInstances": [
+ "2021-06-01-preview",
+ "2021-07-01-preview",
+ "2021-08-01",
+ "2021-11-01",
+ "2022-03-01-preview",
+ "2022-06-15-preview"
+ ],
+ "sqlServerInstances": [
+ "2021-06-01-preview",
+ "2021-07-01-preview",
+ "2021-08-01",
+ "2021-11-01",
+ "2022-03-01-preview",
+ "2022-06-15-preview"
+ ],
+ "sqlServerInstances/databases": [
+ "2022-06-15-preview"
+ ]
+ },
+ "Microsoft.AzureBridge.Admin": {
+ "activations": [
+ "2016-01-01"
+ ],
+ "activations/downloadedProducts": [
+ "2016-01-01"
+ ]
+ },
+ "Microsoft.AzureData": {
+ "sqlServerRegistrations": [
+ "2017-03-01-preview",
+ "2019-07-24-preview"
+ ],
+ "sqlServerRegistrations/sqlServers": [
+ "2017-03-01-preview",
+ "2019-07-24-preview"
+ ]
+ },
+ "Microsoft.AzureStack": {
+ "linkedSubscriptions": [
+ "2020-06-01-preview"
+ ],
+ "registrations": [
+ "2016-01-01",
+ "2017-06-01",
+ "2020-06-01-preview",
+ "2022-06-01"
+ ],
+ "registrations/customerSubscriptions": [
+ "2017-06-01",
+ "2020-06-01-preview",
+ "2022-06-01"
+ ]
+ },
+ "Microsoft.AzureStackHCI": {
+ "clusters": [
+ "2020-03-01-preview",
+ "2020-10-01",
+ "2021-01-01-preview",
+ "2021-09-01",
+ "2021-09-01-preview",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01",
+ "2022-09-01",
+ "2022-10-01",
+ "2022-12-01"
+ ],
+ "clusters/arcSettings": [
+ "2021-01-01-preview",
+ "2021-09-01",
+ "2021-09-01-preview",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01",
+ "2022-09-01",
+ "2022-10-01",
+ "2022-12-01"
+ ],
+ "clusters/arcSettings/extensions": [
+ "2021-01-01-preview",
+ "2021-09-01",
+ "2021-09-01-preview",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01",
+ "2022-09-01",
+ "2022-10-01",
+ "2022-12-01"
+ ],
+ "clusters/updates": [
+ "2022-12-01"
+ ],
+ "clusters/updates/updateRuns": [
+ "2022-12-01"
+ ],
+ "clusters/updateSummaries": [
+ "2022-12-01"
+ ],
+ "galleryimages": [
+ "2021-07-01-preview",
+ "2021-09-01-preview"
+ ],
+ "marketplacegalleryimages": [
+ "2021-09-01-preview"
+ ],
+ "networkinterfaces": [
+ "2021-07-01-preview",
+ "2021-09-01-preview"
+ ],
+ "storagecontainers": [
+ "2021-09-01-preview"
+ ],
+ "virtualharddisks": [
+ "2021-07-01-preview",
+ "2021-09-01-preview"
+ ],
+ "virtualmachines": [
+ "2021-07-01-preview",
+ "2021-09-01-preview"
+ ],
+ "virtualMachines/extensions": [
+ "2021-09-01-preview"
+ ],
+ "virtualMachines/guestAgents": [
+ "2021-09-01-preview"
+ ],
+ "virtualMachines/hybridIdentityMetadata": [
+ "2021-09-01-preview"
+ ],
+ "virtualnetworks": [
+ "2021-07-01-preview",
+ "2021-09-01-preview"
+ ]
+ },
+ "Microsoft.Backup.Admin": {
+ "backupLocations": [
+ "2018-09-01"
+ ]
+ },
+ "Microsoft.Batch": {
+ "batchAccounts": [
+ "2015-12-01",
+ "2017-01-01",
+ "2017-05-01",
+ "2017-09-01",
+ "2018-12-01",
+ "2019-04-01",
+ "2019-08-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-09-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "batchAccounts/applications": [
+ "2015-12-01",
+ "2017-01-01",
+ "2017-05-01",
+ "2017-09-01",
+ "2018-12-01",
+ "2019-04-01",
+ "2019-08-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-09-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "batchAccounts/applications/versions": [
+ "2015-12-01",
+ "2017-01-01",
+ "2017-05-01",
+ "2017-09-01",
+ "2018-12-01",
+ "2019-04-01",
+ "2019-08-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-09-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "batchAccounts/certificates": [
+ "2017-09-01",
+ "2018-12-01",
+ "2019-04-01",
+ "2019-08-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-09-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "batchAccounts/pools": [
+ "2017-09-01",
+ "2018-12-01",
+ "2019-04-01",
+ "2019-08-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-09-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ]
+ },
+ "Microsoft.Billing": {
+ "billingAccounts/billingProfiles": [
+ "2018-11-01-preview",
+ "2019-10-01-preview",
+ "2020-05-01"
+ ],
+ "billingAccounts/billingProfiles/instructions": [
+ "2019-10-01-preview",
+ "2020-05-01"
+ ],
+ "billingAccounts/billingProfiles/invoiceSections": [
+ "2019-10-01-preview",
+ "2020-05-01"
+ ],
+ "billingAccounts/billingProfiles/policies": [
+ "2018-11-01-preview",
+ "2019-10-01-preview",
+ "2020-05-01"
+ ],
+ "billingAccounts/billingRoleAssignments": [
+ "2019-10-01-preview"
+ ],
+ "billingAccounts/billingSubscriptionAliases": [
+ "2021-10-01"
+ ],
+ "billingAccounts/customers/policies": [
+ "2019-10-01-preview",
+ "2020-05-01"
+ ],
+ "billingAccounts/departments/billingRoleAssignments": [
+ "2019-10-01-preview"
+ ],
+ "billingAccounts/enrollmentAccounts/billingRoleAssignments": [
+ "2019-10-01-preview"
+ ],
+ "billingAccounts/invoiceSections": [
+ "2018-11-01-preview"
+ ],
+ "billingAccounts/lineOfCredit": [
+ "2018-11-01-preview"
+ ],
+ "promotions": [
+ "2020-09-01-preview",
+ "2020-11-01-preview"
+ ]
+ },
+ "Microsoft.BillingBenefits": {
+ "reservationOrderAliases": [
+ "2022-11-01"
+ ],
+ "savingsPlanOrderAliases": [
+ "2022-11-01"
+ ]
+ },
+ "Microsoft.Blockchain": {
+ "blockchainMembers": [
+ "2018-06-01-preview"
+ ],
+ "blockchainMembers/transactionNodes": [
+ "2018-06-01-preview"
+ ]
+ },
+ "Microsoft.Blueprint": {
+ "blueprintAssignments": [
+ "2017-11-11-preview",
+ "2018-11-01-preview"
+ ],
+ "blueprints": [
+ "2017-11-11-preview",
+ "2018-11-01-preview"
+ ],
+ "blueprints/artifacts": [
+ "2017-11-11-preview",
+ "2018-11-01-preview"
+ ],
+ "blueprints/versions": [
+ "2017-11-11-preview",
+ "2018-11-01-preview"
+ ]
+ },
+ "Microsoft.BotService": {
+ "botServices": [
+ "2017-12-01",
+ "2018-07-12",
+ "2020-06-02",
+ "2021-03-01",
+ "2021-05-01-preview",
+ "2022-06-15-preview"
+ ],
+ "botServices/channels": [
+ "2017-12-01",
+ "2018-07-12",
+ "2020-06-02",
+ "2021-03-01",
+ "2021-05-01-preview",
+ "2022-06-15-preview"
+ ],
+ "botServices/connections": [
+ "2017-12-01",
+ "2018-07-12",
+ "2020-06-02",
+ "2021-03-01",
+ "2021-05-01-preview",
+ "2022-06-15-preview"
+ ],
+ "botServices/privateEndpointConnections": [
+ "2021-05-01-preview",
+ "2022-06-15-preview"
+ ],
+ "enterpriseChannels": [
+ "2018-07-12"
+ ]
+ },
+ "Microsoft.Cache": {
+ "Redis": [
+ "2015-08-01",
+ "2016-04-01",
+ "2017-02-01",
+ "2017-10-01",
+ "2018-03-01",
+ "2019-07-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-06-01",
+ "2022-05-01",
+ "2022-06-01"
+ ],
+ "Redis/firewallRules": [
+ "2016-04-01",
+ "2017-02-01",
+ "2017-10-01",
+ "2018-03-01",
+ "2019-07-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-06-01",
+ "2022-05-01",
+ "2022-06-01"
+ ],
+ "Redis/linkedServers": [
+ "2017-02-01",
+ "2017-10-01",
+ "2018-03-01",
+ "2019-07-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-06-01",
+ "2022-05-01",
+ "2022-06-01"
+ ],
+ "Redis/patchSchedules": [
+ "2016-04-01",
+ "2017-02-01",
+ "2017-10-01",
+ "2018-03-01",
+ "2019-07-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-06-01",
+ "2022-05-01",
+ "2022-06-01"
+ ],
+ "redis/privateEndpointConnections": [
+ "2020-06-01",
+ "2020-12-01",
+ "2021-06-01",
+ "2022-05-01",
+ "2022-06-01"
+ ],
+ "redisEnterprise": [
+ "2020-10-01-preview",
+ "2021-02-01-preview",
+ "2021-03-01",
+ "2021-08-01",
+ "2022-01-01"
+ ],
+ "redisEnterprise/databases": [
+ "2020-10-01-preview",
+ "2021-02-01-preview",
+ "2021-03-01",
+ "2021-08-01",
+ "2022-01-01"
+ ],
+ "redisEnterprise/privateEndpointConnections": [
+ "2020-10-01-preview",
+ "2021-02-01-preview",
+ "2021-03-01",
+ "2021-08-01",
+ "2022-01-01"
+ ]
+ },
+ "Microsoft.Capacity": {
+ "autoQuotaIncrease": [
+ "2019-07-19"
+ ],
+ "reservationOrders": [
+ "2019-04-01",
+ "2020-10-01-preview",
+ "2021-07-01",
+ "2022-03-01"
+ ],
+ "resourceProviders/locations/serviceLimits": [
+ "2019-07-19",
+ "2020-10-25"
+ ]
+ },
+ "Microsoft.Cdn": {
+ "CdnWebApplicationFirewallPolicies": [
+ "2019-06-15",
+ "2019-06-15-preview",
+ "2020-03-31",
+ "2020-04-15",
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles": [
+ "2015-06-01",
+ "2016-04-02",
+ "2016-10-02",
+ "2017-04-02",
+ "2017-10-12",
+ "2019-04-15",
+ "2019-06-15",
+ "2019-06-15-preview",
+ "2019-12-31",
+ "2020-03-31",
+ "2020-04-15",
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/afdEndpoints": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/afdEndpoints/routes": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/customDomains": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/endpoints": [
+ "2015-06-01",
+ "2016-04-02",
+ "2016-10-02",
+ "2017-04-02",
+ "2017-10-12",
+ "2019-04-15",
+ "2019-06-15",
+ "2019-06-15-preview",
+ "2019-12-31",
+ "2020-03-31",
+ "2020-04-15",
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/endpoints/customDomains": [
+ "2015-06-01",
+ "2016-04-02",
+ "2016-10-02",
+ "2017-04-02",
+ "2017-10-12",
+ "2019-04-15",
+ "2019-06-15",
+ "2019-06-15-preview",
+ "2019-12-31",
+ "2020-03-31",
+ "2020-04-15",
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/endpoints/originGroups": [
+ "2019-12-31",
+ "2020-03-31",
+ "2020-04-15",
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/endpoints/origins": [
+ "2015-06-01",
+ "2016-04-02",
+ "2019-12-31",
+ "2020-03-31",
+ "2020-04-15",
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/originGroups": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/originGroups/origins": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/ruleSets": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/ruleSets/rules": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/secrets": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ],
+ "profiles/securityPolicies": [
+ "2020-09-01",
+ "2021-06-01",
+ "2022-05-01-preview",
+ "2022-11-01-preview"
+ ]
+ },
+ "Microsoft.CertificateRegistration": {
+ "certificateOrders": [
+ "2015-08-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "certificateOrders/certificates": [
+ "2015-08-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ]
+ },
+ "Microsoft.ChangeAnalysis": {
+ "profile": [
+ "2020-04-01-preview"
+ ]
+ },
+ "Microsoft.Chaos": {
+ "experiments": [
+ "2021-09-15-preview",
+ "2022-07-01-preview",
+ "2022-10-01-preview"
+ ],
+ "targets": [
+ "2021-09-15-preview",
+ "2022-07-01-preview",
+ "2022-10-01-preview"
+ ],
+ "targets/capabilities": [
+ "2021-09-15-preview",
+ "2022-07-01-preview",
+ "2022-10-01-preview"
+ ]
+ },
+ "Microsoft.CognitiveServices": {
+ "accounts": [
+ "2016-02-01-preview",
+ "2017-04-18",
+ "2021-04-30",
+ "2021-10-01",
+ "2022-03-01",
+ "2022-10-01",
+ "2022-12-01"
+ ],
+ "accounts/commitmentPlans": [
+ "2021-10-01",
+ "2022-03-01",
+ "2022-10-01",
+ "2022-12-01"
+ ],
+ "accounts/deployments": [
+ "2021-10-01",
+ "2022-03-01",
+ "2022-10-01",
+ "2022-12-01"
+ ],
+ "accounts/privateEndpointConnections": [
+ "2017-04-18",
+ "2021-04-30",
+ "2021-10-01",
+ "2022-03-01",
+ "2022-10-01",
+ "2022-12-01"
+ ],
+ "commitmentPlans": [
+ "2022-12-01"
+ ],
+ "commitmentPlans/accountAssociations": [
+ "2022-12-01"
+ ]
+ },
+ "Microsoft.Communication": {
+ "communicationServices": [
+ "2020-08-20",
+ "2020-08-20-preview",
+ "2021-10-01-preview",
+ "2022-07-01-preview"
+ ],
+ "emailServices": [
+ "2021-10-01-preview",
+ "2022-07-01-preview"
+ ],
+ "emailServices/domains": [
+ "2021-10-01-preview",
+ "2022-07-01-preview"
+ ]
+ },
+ "Microsoft.Compute": {
+ "availabilitySets": [
+ "2015-06-15",
+ "2016-03-30",
+ "2016-04-30-preview",
+ "2017-03-30",
+ "2017-12-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-10-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "capacityReservationGroups": [
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "capacityReservationGroups/capacityReservations": [
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "cloudServices": [
+ "2020-10-01-preview",
+ "2021-03-01",
+ "2022-04-04",
+ "2022-09-04"
+ ],
+ "cloudServices/updateDomains": [
+ "2020-10-01-preview",
+ "2021-03-01",
+ "2022-04-04",
+ "2022-09-04"
+ ],
+ "diskAccesses": [
+ "2020-05-01",
+ "2020-06-30",
+ "2020-09-30",
+ "2020-12-01",
+ "2021-04-01",
+ "2021-08-01",
+ "2021-12-01",
+ "2022-03-02",
+ "2022-07-02"
+ ],
+ "diskAccesses/privateEndpointConnections": [
+ "2020-09-30",
+ "2020-12-01",
+ "2021-04-01",
+ "2021-08-01",
+ "2021-12-01",
+ "2022-03-02",
+ "2022-07-02"
+ ],
+ "diskEncryptionSets": [
+ "2019-07-01",
+ "2019-11-01",
+ "2020-05-01",
+ "2020-06-30",
+ "2020-09-30",
+ "2020-12-01",
+ "2021-04-01",
+ "2021-08-01",
+ "2021-12-01",
+ "2022-03-02",
+ "2022-07-02"
+ ],
+ "disks": [
+ "2016-04-30-preview",
+ "2017-03-30",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-09-30",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-11-01",
+ "2020-05-01",
+ "2020-06-30",
+ "2020-09-30",
+ "2020-12-01",
+ "2021-04-01",
+ "2021-08-01",
+ "2021-12-01",
+ "2022-03-02",
+ "2022-07-02"
+ ],
+ "galleries": [
+ "2018-06-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-09-30",
+ "2021-07-01",
+ "2021-10-01",
+ "2022-01-03",
+ "2022-03-03"
+ ],
+ "galleries/applications": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-09-30",
+ "2021-07-01",
+ "2021-10-01",
+ "2022-01-03",
+ "2022-03-03"
+ ],
+ "galleries/applications/versions": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-09-30",
+ "2021-07-01",
+ "2021-10-01",
+ "2022-01-03",
+ "2022-03-03"
+ ],
+ "galleries/images": [
+ "2018-06-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-09-30",
+ "2021-07-01",
+ "2021-10-01",
+ "2022-01-03",
+ "2022-03-03"
+ ],
+ "galleries/images/versions": [
+ "2018-06-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-09-30",
+ "2021-07-01",
+ "2021-10-01",
+ "2022-01-03",
+ "2022-03-03"
+ ],
+ "hostGroups": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "hostGroups/hosts": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "images": [
+ "2016-04-30-preview",
+ "2017-03-30",
+ "2017-12-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-10-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "proximityPlacementGroups": [
+ "2018-04-01",
+ "2018-06-01",
+ "2018-10-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "restorePointCollections": [
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "restorePointCollections/restorePoints": [
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "snapshots": [
+ "2016-04-30-preview",
+ "2017-03-30",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-09-30",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-11-01",
+ "2020-05-01",
+ "2020-06-30",
+ "2020-09-30",
+ "2020-12-01",
+ "2021-04-01",
+ "2021-08-01",
+ "2021-12-01",
+ "2022-03-02",
+ "2022-07-02"
+ ],
+ "sshPublicKeys": [
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "virtualMachines": [
+ "2015-06-15",
+ "2016-03-30",
+ "2016-04-30-preview",
+ "2017-03-30",
+ "2017-12-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-10-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "virtualMachines/extensions": [
+ "2015-06-15",
+ "2016-03-30",
+ "2016-04-30-preview",
+ "2017-03-30",
+ "2017-12-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-10-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "virtualMachines/runCommands": [
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "virtualMachineScaleSets": [
+ "2015-06-15",
+ "2016-03-30",
+ "2016-04-30-preview",
+ "2017-03-30",
+ "2017-12-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-10-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "virtualMachineScaleSets/extensions": [
+ "2017-03-30",
+ "2017-12-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-10-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "virtualMachineScaleSets/virtualmachines": [
+ "2017-12-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-10-01",
+ "2019-03-01",
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "virtualMachineScaleSets/virtualMachines/extensions": [
+ "2019-07-01",
+ "2019-12-01",
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ],
+ "virtualMachineScaleSets/virtualMachines/runCommands": [
+ "2020-06-01",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-11-01",
+ "2022-03-01",
+ "2022-08-01"
+ ]
+ },
+ "Microsoft.Compute.Admin": {
+ "locations/artifactTypes/publishers/offers/skus/versions": [
+ "2015-12-01-preview"
+ ],
+ "locations/artifactTypes/publishers/types/versions": [
+ "2015-12-01-preview"
+ ],
+ "locations/diskmigrationjobs": [
+ "2018-07-30-preview",
+ "2021-04-01",
+ "2021-09-01"
+ ],
+ "locations/quotas": [
+ "2015-12-01-preview",
+ "2018-02-09",
+ "2021-01-01"
+ ]
+ },
+ "Microsoft.ConfidentialLedger": {
+ "ledgers": [
+ "2020-12-01-preview",
+ "2021-05-13-preview",
+ "2022-05-13",
+ "2022-09-08-preview"
+ ],
+ "managedCCFs": [
+ "2022-09-08-preview"
+ ]
+ },
+ "Microsoft.Confluent": {
+ "agreements": [
+ "2020-03-01",
+ "2020-03-01-preview",
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-12-01"
+ ],
+ "organizations": [
+ "2020-03-01",
+ "2020-03-01-preview",
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-12-01"
+ ]
+ },
+ "Microsoft.ConnectedVMwarevSphere": {
+ "clusters": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "datastores": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "hosts": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "resourcePools": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "vcenters": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "vcenters/inventoryItems": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "virtualMachines": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "virtualMachines/extensions": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "virtualMachines/guestAgents": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "virtualMachines/hybridIdentityMetadata": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "virtualMachineTemplates": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ],
+ "virtualNetworks": [
+ "2020-10-01-preview",
+ "2022-01-10-preview",
+ "2022-07-15-preview"
+ ]
+ },
+ "Microsoft.Consumption": {
+ "budgets": [
+ "2017-12-30-preview",
+ "2018-01-31",
+ "2018-03-31",
+ "2018-06-30",
+ "2018-08-31",
+ "2018-10-01",
+ "2019-01-01",
+ "2019-04-01-preview",
+ "2019-05-01",
+ "2019-05-01-preview",
+ "2019-06-01",
+ "2019-10-01",
+ "2019-11-01",
+ "2021-05-01",
+ "2021-10-01"
+ ],
+ "costTags": [
+ "2018-03-31",
+ "2018-06-30"
+ ]
+ },
+ "Microsoft.ContainerInstance": {
+ "containerGroups": [
+ "2017-08-01-preview",
+ "2017-10-01-preview",
+ "2017-12-01-preview",
+ "2018-02-01-preview",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-09-01",
+ "2018-10-01",
+ "2019-12-01",
+ "2020-11-01",
+ "2021-03-01",
+ "2021-07-01",
+ "2021-09-01",
+ "2021-10-01",
+ "2022-09-01",
+ "2022-10-01-preview"
+ ]
+ },
+ "Microsoft.ContainerRegistry": {
+ "registries": [
+ "2016-06-27-preview",
+ "2017-03-01",
+ "2017-06-01-preview",
+ "2017-10-01",
+ "2019-05-01",
+ "2019-12-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-09-01",
+ "2021-12-01-preview",
+ "2022-02-01-preview",
+ "2022-12-01"
+ ],
+ "registries/agentPools": [
+ "2019-06-01-preview"
+ ],
+ "registries/buildTasks": [
+ "2018-02-01-preview"
+ ],
+ "registries/buildTasks/steps": [
+ "2018-02-01-preview"
+ ],
+ "registries/connectedRegistries": [
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-12-01-preview",
+ "2022-02-01-preview"
+ ],
+ "registries/exportPipelines": [
+ "2019-12-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-12-01-preview",
+ "2022-02-01-preview"
+ ],
+ "registries/importPipelines": [
+ "2019-12-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-12-01-preview",
+ "2022-02-01-preview"
+ ],
+ "registries/pipelineRuns": [
+ "2019-12-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-12-01-preview",
+ "2022-02-01-preview"
+ ],
+ "registries/privateEndpointConnections": [
+ "2019-12-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-09-01",
+ "2021-12-01-preview",
+ "2022-02-01-preview",
+ "2022-12-01"
+ ],
+ "registries/replications": [
+ "2017-06-01-preview",
+ "2017-10-01",
+ "2019-05-01",
+ "2019-12-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-09-01",
+ "2021-12-01-preview",
+ "2022-02-01-preview",
+ "2022-12-01"
+ ],
+ "registries/scopeMaps": [
+ "2019-05-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-12-01-preview",
+ "2022-02-01-preview",
+ "2022-12-01"
+ ],
+ "registries/taskRuns": [
+ "2019-06-01-preview"
+ ],
+ "registries/tasks": [
+ "2018-09-01",
+ "2019-04-01",
+ "2019-06-01-preview"
+ ],
+ "registries/tokens": [
+ "2019-05-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-12-01-preview",
+ "2022-02-01-preview",
+ "2022-12-01"
+ ],
+ "registries/webhooks": [
+ "2017-06-01-preview",
+ "2017-10-01",
+ "2019-05-01",
+ "2019-12-01-preview",
+ "2020-11-01-preview",
+ "2021-06-01-preview",
+ "2021-08-01-preview",
+ "2021-09-01",
+ "2021-12-01-preview",
+ "2022-02-01-preview",
+ "2022-12-01"
+ ]
+ },
+ "Microsoft.ContainerRegistry.Admin": {
+ "locations/configurations": [
+ "2019-11-01-preview"
+ ],
+ "locations/quotas": [
+ "2019-11-01-preview"
+ ]
+ },
+ "Microsoft.ContainerService": {
+ "containerServices": [
+ "2015-11-01-preview",
+ "2016-03-30",
+ "2016-09-30",
+ "2017-01-31",
+ "2017-07-01"
+ ],
+ "fleets": [
+ "2022-06-02-preview",
+ "2022-07-02-preview",
+ "2022-09-02-preview"
+ ],
+ "fleets/members": [
+ "2022-06-02-preview",
+ "2022-07-02-preview",
+ "2022-09-02-preview"
+ ],
+ "managedClusters": [
+ "2017-08-31",
+ "2018-03-31",
+ "2018-08-01-preview",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-08-01",
+ "2019-10-01",
+ "2019-11-01",
+ "2020-01-01",
+ "2020-02-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-01-02-preview",
+ "2022-02-01",
+ "2022-02-02-preview",
+ "2022-03-01",
+ "2022-03-02-preview",
+ "2022-04-01",
+ "2022-04-02-preview",
+ "2022-05-02-preview",
+ "2022-06-01",
+ "2022-06-02-preview",
+ "2022-07-01",
+ "2022-07-02-preview",
+ "2022-08-02-preview",
+ "2022-08-03-preview",
+ "2022-09-01",
+ "2022-09-02-preview",
+ "2022-10-02-preview"
+ ],
+ "managedClusters/agentPools": [
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-08-01",
+ "2019-10-01",
+ "2019-11-01",
+ "2020-01-01",
+ "2020-02-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-01-02-preview",
+ "2022-02-01",
+ "2022-02-02-preview",
+ "2022-03-01",
+ "2022-03-02-preview",
+ "2022-04-01",
+ "2022-04-02-preview",
+ "2022-05-02-preview",
+ "2022-06-01",
+ "2022-06-02-preview",
+ "2022-07-01",
+ "2022-07-02-preview",
+ "2022-08-02-preview",
+ "2022-08-03-preview",
+ "2022-09-01",
+ "2022-09-02-preview",
+ "2022-10-02-preview"
+ ],
+ "managedClusters/maintenanceConfigurations": [
+ "2020-12-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-01-02-preview",
+ "2022-02-01",
+ "2022-02-02-preview",
+ "2022-03-01",
+ "2022-03-02-preview",
+ "2022-04-01",
+ "2022-04-02-preview",
+ "2022-05-02-preview",
+ "2022-06-01",
+ "2022-06-02-preview",
+ "2022-07-01",
+ "2022-07-02-preview",
+ "2022-08-02-preview",
+ "2022-08-03-preview",
+ "2022-09-01",
+ "2022-09-02-preview",
+ "2022-10-02-preview"
+ ],
+ "managedClusters/privateEndpointConnections": [
+ "2020-06-01",
+ "2020-07-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-01-02-preview",
+ "2022-02-01",
+ "2022-02-02-preview",
+ "2022-03-01",
+ "2022-03-02-preview",
+ "2022-04-01",
+ "2022-04-02-preview",
+ "2022-05-02-preview",
+ "2022-06-01",
+ "2022-06-02-preview",
+ "2022-07-01",
+ "2022-07-02-preview",
+ "2022-08-02-preview",
+ "2022-08-03-preview",
+ "2022-09-01",
+ "2022-09-02-preview",
+ "2022-10-02-preview"
+ ],
+ "managedClusters/trustedAccessRoleBindings": [
+ "2022-04-02-preview",
+ "2022-05-02-preview",
+ "2022-06-02-preview",
+ "2022-07-02-preview",
+ "2022-08-02-preview",
+ "2022-08-03-preview",
+ "2022-09-02-preview",
+ "2022-10-02-preview"
+ ],
+ "managedclustersnapshots": [
+ "2022-02-02-preview",
+ "2022-03-02-preview",
+ "2022-04-02-preview",
+ "2022-05-02-preview",
+ "2022-06-02-preview",
+ "2022-07-02-preview",
+ "2022-08-02-preview",
+ "2022-08-03-preview",
+ "2022-09-02-preview",
+ "2022-10-02-preview"
+ ],
+ "openShiftManagedClusters": [
+ "2018-09-30-preview",
+ "2019-04-30",
+ "2019-09-30",
+ "2019-10-27-preview"
+ ],
+ "snapshots": [
+ "2021-08-01",
+ "2021-09-01",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-01-02-preview",
+ "2022-02-01",
+ "2022-02-02-preview",
+ "2022-03-01",
+ "2022-03-02-preview",
+ "2022-04-01",
+ "2022-04-02-preview",
+ "2022-05-02-preview",
+ "2022-06-01",
+ "2022-06-02-preview",
+ "2022-07-01",
+ "2022-07-02-preview",
+ "2022-08-02-preview",
+ "2022-08-03-preview",
+ "2022-09-01",
+ "2022-09-02-preview",
+ "2022-10-02-preview"
+ ]
+ },
+ "Microsoft.CostManagement": {
+ "budgets": [
+ "2019-04-01-preview"
+ ],
+ "cloudConnectors": [
+ "2019-03-01-preview"
+ ],
+ "connectors": [
+ "2018-08-01-preview"
+ ],
+ "costAllocationRules": [
+ "2020-03-01-preview"
+ ],
+ "exports": [
+ "2019-01-01",
+ "2019-09-01",
+ "2019-10-01",
+ "2019-11-01",
+ "2020-06-01",
+ "2020-12-01-preview",
+ "2021-01-01",
+ "2021-10-01",
+ "2022-10-01"
+ ],
+ "externalSubscriptions": [
+ "2019-03-01-preview"
+ ],
+ "markupRules": [
+ "2022-10-05-preview"
+ ],
+ "reportconfigs": [
+ "2018-05-31"
+ ],
+ "reports": [
+ "2018-08-01-preview"
+ ],
+ "scheduledActions": [
+ "2022-04-01-preview",
+ "2022-06-01-preview",
+ "2022-10-01"
+ ],
+ "settings": [
+ "2019-11-01",
+ "2022-10-01-preview",
+ "2022-10-05-preview"
+ ],
+ "showbackRules": [
+ "2019-03-01-preview"
+ ],
+ "views": [
+ "2019-04-01-preview",
+ "2019-11-01",
+ "2020-06-01",
+ "2021-10-01",
+ "2022-08-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview",
+ "2022-10-05-preview"
+ ]
+ },
+ "Microsoft.CustomerInsights": {
+ "hubs": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/authorizationPolicies": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/connectors": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/connectors/mappings": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/interactions": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/kpi": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/links": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/predictions": [
+ "2017-04-26"
+ ],
+ "hubs/profiles": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/relationshipLinks": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/relationships": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/roleAssignments": [
+ "2017-01-01",
+ "2017-04-26"
+ ],
+ "hubs/views": [
+ "2017-01-01",
+ "2017-04-26"
+ ]
+ },
+ "Microsoft.CustomProviders": {
+ "associations": [
+ "2018-09-01-preview"
+ ],
+ "resourceProviders": [
+ "2018-09-01-preview"
+ ]
+ },
+ "Microsoft.Dashboard": {
+ "grafana": [
+ "2021-09-01-preview",
+ "2022-05-01-preview",
+ "2022-08-01"
+ ],
+ "grafana/privateEndpointConnections": [
+ "2022-05-01-preview",
+ "2022-08-01"
+ ]
+ },
+ "Microsoft.DataBox": {
+ "jobs": [
+ "2018-01-01",
+ "2019-09-01",
+ "2020-04-01",
+ "2020-11-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01-preview",
+ "2021-12-01",
+ "2022-02-01",
+ "2022-09-01"
+ ]
+ },
+ "Microsoft.DataBoxEdge": {
+ "dataBoxEdgeDevices": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/bandwidthSchedules": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/diagnosticProactiveLogCollectionSettings": [
+ "2021-02-01",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/diagnosticRemoteSupportSettings": [
+ "2021-02-01",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/orders": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/roles": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/roles/addons": [
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/roles/monitoringConfig": [
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/shares": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/storageAccountCredentials": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/storageAccounts": [
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/storageAccounts/containers": [
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/triggers": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ],
+ "dataBoxEdgeDevices/users": [
+ "2019-03-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2020-05-01-preview",
+ "2020-09-01",
+ "2020-09-01-preview",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-03-01",
+ "2022-04-01-preview",
+ "2022-12-01-preview"
+ ]
+ },
+ "Microsoft.Databricks": {
+ "accessConnectors": [
+ "2022-04-01-preview"
+ ],
+ "workspaces": [
+ "2018-04-01",
+ "2021-04-01-preview",
+ "2022-04-01-preview"
+ ],
+ "workspaces/privateEndpointConnections": [
+ "2021-04-01-preview",
+ "2022-04-01-preview"
+ ],
+ "workspaces/virtualNetworkPeerings": [
+ "2018-04-01",
+ "2021-04-01-preview",
+ "2022-04-01-preview"
+ ]
+ },
+ "Microsoft.DataCatalog": {
+ "catalogs": [
+ "2016-03-30"
+ ]
+ },
+ "Microsoft.Datadog": {
+ "agreements": [
+ "2020-02-01-preview",
+ "2021-03-01",
+ "2022-06-01"
+ ],
+ "monitors": [
+ "2020-02-01-preview",
+ "2021-03-01",
+ "2022-06-01"
+ ],
+ "monitors/singleSignOnConfigurations": [
+ "2020-02-01-preview",
+ "2021-03-01",
+ "2022-06-01"
+ ],
+ "monitors/tagRules": [
+ "2020-02-01-preview",
+ "2021-03-01",
+ "2022-06-01"
+ ]
+ },
+ "Microsoft.DataFactory": {
+ "factories": [
+ "2017-09-01-preview",
+ "2018-06-01"
+ ],
+ "factories/credentials": [
+ "2018-06-01"
+ ],
+ "factories/dataflows": [
+ "2018-06-01"
+ ],
+ "factories/datasets": [
+ "2017-09-01-preview",
+ "2018-06-01"
+ ],
+ "factories/globalParameters": [
+ "2018-06-01"
+ ],
+ "factories/integrationRuntimes": [
+ "2017-09-01-preview",
+ "2018-06-01"
+ ],
+ "factories/linkedservices": [
+ "2017-09-01-preview",
+ "2018-06-01"
+ ],
+ "factories/managedVirtualNetworks": [
+ "2018-06-01"
+ ],
+ "factories/managedVirtualNetworks/managedPrivateEndpoints": [
+ "2018-06-01"
+ ],
+ "factories/pipelines": [
+ "2017-09-01-preview",
+ "2018-06-01"
+ ],
+ "factories/privateEndpointConnections": [
+ "2018-06-01"
+ ],
+ "factories/triggers": [
+ "2017-09-01-preview",
+ "2018-06-01"
+ ]
+ },
+ "Microsoft.DataLakeAnalytics": {
+ "accounts": [
+ "2015-10-01-preview",
+ "2016-11-01",
+ "2019-11-01-preview"
+ ],
+ "accounts/computePolicies": [
+ "2015-10-01-preview",
+ "2016-11-01",
+ "2019-11-01-preview"
+ ],
+ "accounts/dataLakeStoreAccounts": [
+ "2015-10-01-preview",
+ "2016-11-01",
+ "2019-11-01-preview"
+ ],
+ "accounts/firewallRules": [
+ "2015-10-01-preview",
+ "2016-11-01",
+ "2019-11-01-preview"
+ ],
+ "accounts/storageAccounts": [
+ "2015-10-01-preview",
+ "2016-11-01",
+ "2019-11-01-preview"
+ ]
+ },
+ "Microsoft.DataLakeStore": {
+ "accounts": [
+ "2015-10-01-preview",
+ "2016-11-01"
+ ],
+ "accounts/firewallRules": [
+ "2015-10-01-preview",
+ "2016-11-01"
+ ],
+ "accounts/trustedIdProviders": [
+ "2016-11-01"
+ ],
+ "accounts/virtualNetworkRules": [
+ "2016-11-01"
+ ]
+ },
+ "Microsoft.DataMigration": {
+ "databaseMigrations": [
+ "2021-10-30-preview",
+ "2022-01-30-preview",
+ "2022-03-30-preview"
+ ],
+ "services": [
+ "2017-11-15-preview",
+ "2018-03-15-preview",
+ "2018-03-31-preview",
+ "2018-04-19",
+ "2018-07-15-preview",
+ "2021-06-30",
+ "2021-10-30-preview",
+ "2022-01-30-preview",
+ "2022-03-30-preview"
+ ],
+ "services/projects": [
+ "2017-11-15-preview",
+ "2018-03-15-preview",
+ "2018-03-31-preview",
+ "2018-04-19",
+ "2018-07-15-preview",
+ "2021-06-30",
+ "2021-10-30-preview",
+ "2022-01-30-preview",
+ "2022-03-30-preview"
+ ],
+ "services/projects/files": [
+ "2018-07-15-preview",
+ "2021-06-30",
+ "2021-10-30-preview",
+ "2022-01-30-preview",
+ "2022-03-30-preview"
+ ],
+ "services/projects/tasks": [
+ "2017-11-15-preview",
+ "2018-03-15-preview",
+ "2018-03-31-preview",
+ "2018-04-19",
+ "2018-07-15-preview",
+ "2021-06-30",
+ "2021-10-30-preview",
+ "2022-01-30-preview",
+ "2022-03-30-preview"
+ ],
+ "services/serviceTasks": [
+ "2018-07-15-preview",
+ "2021-06-30",
+ "2021-10-30-preview",
+ "2022-01-30-preview",
+ "2022-03-30-preview"
+ ],
+ "sqlMigrationServices": [
+ "2021-10-30-preview",
+ "2022-01-30-preview",
+ "2022-03-30-preview"
+ ]
+ },
+ "Microsoft.DataProtection": {
+ "backupVaults": [
+ "2021-01-01",
+ "2021-02-01-preview",
+ "2021-06-01-preview",
+ "2021-07-01",
+ "2021-10-01-preview",
+ "2021-12-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-03-01",
+ "2022-03-31-preview",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview"
+ ],
+ "backupVaults/backupInstances": [
+ "2021-01-01",
+ "2021-02-01-preview",
+ "2021-06-01-preview",
+ "2021-07-01",
+ "2021-10-01-preview",
+ "2021-12-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-03-01",
+ "2022-03-31-preview",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview"
+ ],
+ "backupVaults/backupPolicies": [
+ "2021-01-01",
+ "2021-02-01-preview",
+ "2021-06-01-preview",
+ "2021-07-01",
+ "2021-10-01-preview",
+ "2021-12-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-03-01",
+ "2022-03-31-preview",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview"
+ ],
+ "backupVaults/backupResourceGuardProxies": [
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview"
+ ],
+ "resourceGuards": [
+ "2021-07-01",
+ "2021-10-01-preview",
+ "2021-12-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-03-01",
+ "2022-03-31-preview",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview"
+ ]
+ },
+ "Microsoft.DataShare": {
+ "accounts": [
+ "2018-11-01-preview",
+ "2019-11-01",
+ "2020-09-01",
+ "2020-10-01-preview",
+ "2021-08-01"
+ ],
+ "accounts/shares": [
+ "2018-11-01-preview",
+ "2019-11-01",
+ "2020-09-01",
+ "2020-10-01-preview",
+ "2021-08-01"
+ ],
+ "accounts/shares/dataSets": [
+ "2018-11-01-preview",
+ "2019-11-01",
+ "2020-09-01",
+ "2020-10-01-preview",
+ "2021-08-01"
+ ],
+ "accounts/shares/invitations": [
+ "2018-11-01-preview",
+ "2019-11-01",
+ "2020-09-01",
+ "2020-10-01-preview",
+ "2021-08-01"
+ ],
+ "accounts/shares/synchronizationSettings": [
+ "2018-11-01-preview",
+ "2019-11-01",
+ "2020-09-01",
+ "2020-10-01-preview",
+ "2021-08-01"
+ ],
+ "accounts/shareSubscriptions": [
+ "2018-11-01-preview",
+ "2019-11-01",
+ "2020-09-01",
+ "2020-10-01-preview",
+ "2021-08-01"
+ ],
+ "accounts/shareSubscriptions/dataSetMappings": [
+ "2018-11-01-preview",
+ "2019-11-01",
+ "2020-09-01",
+ "2020-10-01-preview",
+ "2021-08-01"
+ ],
+ "accounts/shareSubscriptions/triggers": [
+ "2018-11-01-preview",
+ "2019-11-01",
+ "2020-09-01",
+ "2020-10-01-preview",
+ "2021-08-01"
+ ]
+ },
+ "Microsoft.DBforMariaDB": {
+ "servers": [
+ "2018-06-01",
+ "2018-06-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/configurations": [
+ "2018-06-01",
+ "2018-06-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/databases": [
+ "2018-06-01",
+ "2018-06-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/firewallRules": [
+ "2018-06-01",
+ "2018-06-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/keys": [
+ "2020-01-01-privatepreview"
+ ],
+ "servers/privateEndpointConnections": [
+ "2018-06-01",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/securityAlertPolicies": [
+ "2018-06-01",
+ "2018-06-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/virtualNetworkRules": [
+ "2018-06-01",
+ "2018-06-01-preview",
+ "2018-06-01-privatepreview"
+ ]
+ },
+ "Microsoft.DBforMySQL": {
+ "flexibleServers": [
+ "2020-07-01-preview",
+ "2020-07-01-privatepreview",
+ "2021-05-01",
+ "2021-05-01-preview",
+ "2021-12-01-preview"
+ ],
+ "flexibleServers/administrators": [
+ "2021-12-01-preview"
+ ],
+ "flexibleServers/backups": [
+ "2021-12-01-preview"
+ ],
+ "flexibleServers/databases": [
+ "2020-07-01-preview",
+ "2020-07-01-privatepreview",
+ "2021-05-01",
+ "2021-05-01-preview",
+ "2021-12-01-preview"
+ ],
+ "flexibleServers/firewallRules": [
+ "2020-07-01-preview",
+ "2020-07-01-privatepreview",
+ "2021-05-01",
+ "2021-05-01-preview",
+ "2021-12-01-preview"
+ ],
+ "flexibleServers/keys": [
+ "2020-07-01-preview",
+ "2020-07-01-privatepreview"
+ ],
+ "servers": [
+ "2017-12-01",
+ "2017-12-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/Administrators": [
+ "2017-12-01",
+ "2017-12-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/configurations": [
+ "2017-12-01",
+ "2017-12-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/databases": [
+ "2017-12-01",
+ "2017-12-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/firewallRules": [
+ "2017-12-01",
+ "2017-12-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/keys": [
+ "2020-01-01",
+ "2020-01-01-privatepreview"
+ ],
+ "servers/privateEndpointConnections": [
+ "2018-06-01",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/securityAlertPolicies": [
+ "2017-12-01",
+ "2017-12-01-preview",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/virtualNetworkRules": [
+ "2017-12-01",
+ "2017-12-01-preview",
+ "2018-06-01-privatepreview"
+ ]
+ },
+ "Microsoft.DBforPostgreSQL": {
+ "flexibleServers": [
+ "2020-02-14-preview",
+ "2020-02-14-privatepreview",
+ "2021-04-10-privatepreview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2021-06-15-privatepreview",
+ "2022-01-20-preview",
+ "2022-03-08-preview",
+ "2022-12-01"
+ ],
+ "flexibleServers/administrators": [
+ "2022-03-08-preview",
+ "2022-12-01"
+ ],
+ "flexibleServers/configurations": [
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2021-06-15-privatepreview",
+ "2022-01-20-preview",
+ "2022-03-08-preview",
+ "2022-12-01"
+ ],
+ "flexibleServers/databases": [
+ "2020-11-05-preview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2022-01-20-preview",
+ "2022-03-08-preview",
+ "2022-12-01"
+ ],
+ "flexibleServers/firewallRules": [
+ "2020-02-14-preview",
+ "2020-02-14-privatepreview",
+ "2021-04-10-privatepreview",
+ "2021-06-01",
+ "2021-06-01-preview",
+ "2021-06-15-privatepreview",
+ "2022-01-20-preview",
+ "2022-03-08-preview",
+ "2022-12-01"
+ ],
+ "flexibleServers/keys": [
+ "2020-02-14-privatepreview"
+ ],
+ "flexibleServers/migrations": [
+ "2021-06-15-privatepreview"
+ ],
+ "serverGroupsv2": [
+ "2020-10-05-privatepreview"
+ ],
+ "serverGroupsv2/firewallRules": [
+ "2020-10-05-privatepreview"
+ ],
+ "serverGroupsv2/roles": [
+ "2020-10-05-privatepreview"
+ ],
+ "servers": [
+ "2017-12-01",
+ "2017-12-01-preview"
+ ],
+ "servers/administrators": [
+ "2017-12-01",
+ "2017-12-01-preview"
+ ],
+ "servers/configurations": [
+ "2017-12-01",
+ "2017-12-01-preview"
+ ],
+ "servers/databases": [
+ "2017-12-01",
+ "2017-12-01-preview"
+ ],
+ "servers/firewallRules": [
+ "2017-12-01",
+ "2017-12-01-preview"
+ ],
+ "servers/keys": [
+ "2020-01-01",
+ "2020-01-01-privatepreview"
+ ],
+ "servers/privateEndpointConnections": [
+ "2018-06-01",
+ "2018-06-01-privatepreview"
+ ],
+ "servers/securityAlertPolicies": [
+ "2017-12-01",
+ "2017-12-01-preview"
+ ],
+ "servers/virtualNetworkRules": [
+ "2017-12-01",
+ "2017-12-01-preview"
+ ]
+ },
+ "Microsoft.DelegatedNetwork": {
+ "controller": [
+ "2020-08-08-preview",
+ "2021-03-15"
+ ],
+ "delegatedSubnets": [
+ "2020-08-08-preview",
+ "2021-03-15"
+ ],
+ "orchestrators": [
+ "2020-08-08-preview",
+ "2021-03-15"
+ ]
+ },
+ "Microsoft.Deployment.Admin": {
+ "locations/fileContainers": [
+ "2018-07-01",
+ "2019-01-01"
+ ],
+ "locations/productPackages": [
+ "2018-07-01",
+ "2019-01-01"
+ ]
+ },
+ "Microsoft.DeploymentManager": {
+ "artifactSources": [
+ "2018-09-01-preview",
+ "2019-11-01-preview"
+ ],
+ "rollouts": [
+ "2018-09-01-preview",
+ "2019-11-01-preview"
+ ],
+ "serviceTopologies": [
+ "2018-09-01-preview",
+ "2019-11-01-preview"
+ ],
+ "serviceTopologies/services": [
+ "2018-09-01-preview",
+ "2019-11-01-preview"
+ ],
+ "serviceTopologies/services/serviceUnits": [
+ "2018-09-01-preview",
+ "2019-11-01-preview"
+ ],
+ "steps": [
+ "2018-09-01-preview",
+ "2019-11-01-preview"
+ ]
+ },
+ "Microsoft.DesktopVirtualization": {
+ "applicationGroups": [
+ "2019-01-23-preview",
+ "2019-09-24-preview",
+ "2019-12-10-preview",
+ "2020-09-21-preview",
+ "2020-10-19-preview",
+ "2020-11-02-preview",
+ "2020-11-10-preview",
+ "2021-01-14-preview",
+ "2021-02-01-preview",
+ "2021-03-09-preview",
+ "2021-04-01-preview",
+ "2021-07-12",
+ "2021-09-03-preview",
+ "2022-02-10-preview",
+ "2022-04-01-preview",
+ "2022-09-09",
+ "2022-10-14-preview"
+ ],
+ "applicationGroups/applications": [
+ "2019-01-23-preview",
+ "2019-09-24-preview",
+ "2019-12-10-preview",
+ "2020-09-21-preview",
+ "2020-10-19-preview",
+ "2020-11-02-preview",
+ "2020-11-10-preview",
+ "2021-01-14-preview",
+ "2021-02-01-preview",
+ "2021-03-09-preview",
+ "2021-04-01-preview",
+ "2021-07-12",
+ "2021-09-03-preview",
+ "2022-02-10-preview",
+ "2022-04-01-preview",
+ "2022-09-09",
+ "2022-10-14-preview"
+ ],
+ "hostPools": [
+ "2019-01-23-preview",
+ "2019-09-24-preview",
+ "2019-12-10-preview",
+ "2020-09-21-preview",
+ "2020-10-19-preview",
+ "2020-11-02-preview",
+ "2020-11-10-preview",
+ "2021-01-14-preview",
+ "2021-02-01-preview",
+ "2021-03-09-preview",
+ "2021-04-01-preview",
+ "2021-07-12",
+ "2021-09-03-preview",
+ "2022-02-10-preview",
+ "2022-04-01-preview",
+ "2022-09-09",
+ "2022-10-14-preview"
+ ],
+ "hostPools/msixPackages": [
+ "2020-09-21-preview",
+ "2020-10-19-preview",
+ "2020-11-02-preview",
+ "2020-11-10-preview",
+ "2021-01-14-preview",
+ "2021-02-01-preview",
+ "2021-03-09-preview",
+ "2021-04-01-preview",
+ "2021-07-12",
+ "2021-09-03-preview",
+ "2022-02-10-preview",
+ "2022-04-01-preview",
+ "2022-09-09",
+ "2022-10-14-preview"
+ ],
+ "hostPools/privateEndpointConnections": [
+ "2021-04-01-preview",
+ "2021-09-03-preview",
+ "2022-02-10-preview",
+ "2022-04-01-preview",
+ "2022-10-14-preview"
+ ],
+ "scalingPlans": [
+ "2020-11-10-preview",
+ "2021-01-14-preview",
+ "2021-02-01-preview",
+ "2021-03-09-preview",
+ "2021-04-01-preview",
+ "2021-07-12",
+ "2021-09-03-preview",
+ "2022-02-10-preview",
+ "2022-04-01-preview",
+ "2022-09-09",
+ "2022-10-14-preview"
+ ],
+ "scalingPlans/pooledSchedules": [
+ "2022-04-01-preview",
+ "2022-09-09",
+ "2022-10-14-preview"
+ ],
+ "workspaces": [
+ "2019-01-23-preview",
+ "2019-09-24-preview",
+ "2019-12-10-preview",
+ "2020-09-21-preview",
+ "2020-10-19-preview",
+ "2020-11-02-preview",
+ "2020-11-10-preview",
+ "2021-01-14-preview",
+ "2021-02-01-preview",
+ "2021-03-09-preview",
+ "2021-04-01-preview",
+ "2021-07-12",
+ "2021-09-03-preview",
+ "2022-02-10-preview",
+ "2022-04-01-preview",
+ "2022-09-09",
+ "2022-10-14-preview"
+ ],
+ "workspaces/privateEndpointConnections": [
+ "2021-04-01-preview",
+ "2021-09-03-preview",
+ "2022-02-10-preview",
+ "2022-04-01-preview",
+ "2022-10-14-preview"
+ ]
+ },
+ "Microsoft.DevCenter": {
+ "devcenters": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "devcenters/attachednetworks": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "devcenters/catalogs": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "devcenters/devboxdefinitions": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "devcenters/environmentTypes": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "devcenters/galleries": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "networkConnections": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "projects": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "projects/environmentTypes": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "projects/pools": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ],
+ "projects/pools/schedules": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-12-preview",
+ "2022-11-11-preview"
+ ]
+ },
+ "Microsoft.DevHub": {
+ "workflows": [
+ "2022-04-01-preview"
+ ]
+ },
+ "Microsoft.Devices": {
+ "IotHubs": [
+ "2016-02-03",
+ "2017-01-19",
+ "2017-07-01",
+ "2018-01-22",
+ "2018-04-01",
+ "2018-12-01-preview",
+ "2019-03-22",
+ "2019-03-22-preview",
+ "2019-07-01-preview",
+ "2019-11-04",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-15",
+ "2020-07-10-preview",
+ "2020-08-01",
+ "2020-08-31",
+ "2020-08-31-preview",
+ "2021-02-01-preview",
+ "2021-03-03-preview",
+ "2021-03-31",
+ "2021-07-01",
+ "2021-07-01-preview",
+ "2021-07-02",
+ "2021-07-02-preview",
+ "2022-04-30-preview"
+ ],
+ "IotHubs/certificates": [
+ "2017-07-01",
+ "2018-01-22",
+ "2018-04-01",
+ "2018-12-01-preview",
+ "2019-03-22",
+ "2019-03-22-preview",
+ "2019-07-01-preview",
+ "2019-11-04",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-15",
+ "2020-07-10-preview",
+ "2020-08-01",
+ "2020-08-31",
+ "2020-08-31-preview",
+ "2021-02-01-preview",
+ "2021-03-03-preview",
+ "2021-03-31",
+ "2021-07-01",
+ "2021-07-01-preview",
+ "2021-07-02",
+ "2021-07-02-preview",
+ "2022-04-30-preview"
+ ],
+ "IotHubs/eventHubEndpoints/ConsumerGroups": [
+ "2016-02-03",
+ "2017-01-19",
+ "2017-07-01",
+ "2018-01-22",
+ "2018-04-01",
+ "2018-12-01-preview",
+ "2019-03-22",
+ "2019-03-22-preview",
+ "2019-07-01-preview",
+ "2019-11-04",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-15",
+ "2020-07-10-preview",
+ "2020-08-01",
+ "2020-08-31",
+ "2020-08-31-preview",
+ "2021-02-01-preview",
+ "2021-03-03-preview",
+ "2021-03-31",
+ "2021-07-01",
+ "2021-07-01-preview",
+ "2021-07-02",
+ "2021-07-02-preview",
+ "2022-04-30-preview"
+ ],
+ "iotHubs/privateEndpointConnections": [
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-15",
+ "2020-07-10-preview",
+ "2020-08-01",
+ "2020-08-31",
+ "2020-08-31-preview",
+ "2021-02-01-preview",
+ "2021-03-03-preview",
+ "2021-03-31",
+ "2021-07-01",
+ "2021-07-01-preview",
+ "2021-07-02",
+ "2021-07-02-preview",
+ "2022-04-30-preview"
+ ],
+ "provisioningServices": [
+ "2017-08-21-preview",
+ "2017-11-15",
+ "2018-01-22",
+ "2020-01-01",
+ "2020-03-01",
+ "2020-09-01-preview",
+ "2021-10-15",
+ "2022-02-05"
+ ],
+ "provisioningServices/certificates": [
+ "2017-08-21-preview",
+ "2017-11-15",
+ "2018-01-22",
+ "2020-01-01",
+ "2020-03-01",
+ "2020-09-01-preview",
+ "2021-10-15",
+ "2022-02-05"
+ ],
+ "provisioningServices/privateEndpointConnections": [
+ "2020-03-01",
+ "2020-09-01-preview",
+ "2021-10-15",
+ "2022-02-05"
+ ]
+ },
+ "Microsoft.DeviceUpdate": {
+ "accounts": [
+ "2020-03-01-preview",
+ "2022-04-01-preview",
+ "2022-10-01",
+ "2022-12-01-preview"
+ ],
+ "accounts/instances": [
+ "2020-03-01-preview",
+ "2022-04-01-preview",
+ "2022-10-01",
+ "2022-12-01-preview"
+ ],
+ "accounts/privateEndpointConnectionProxies": [
+ "2020-03-01-preview",
+ "2022-04-01-preview",
+ "2022-10-01",
+ "2022-12-01-preview"
+ ],
+ "accounts/privateEndpointConnections": [
+ "2020-03-01-preview",
+ "2022-04-01-preview",
+ "2022-10-01",
+ "2022-12-01-preview"
+ ]
+ },
+ "Microsoft.DevOps": {
+ "pipelines": [
+ "2019-07-01-preview",
+ "2020-07-13-preview"
+ ]
+ },
+ "Microsoft.DevSpaces": {
+ "controllers": [
+ "2019-04-01"
+ ]
+ },
+ "Microsoft.DevTestLab": {
+ "labs": [
+ "2015-05-21-preview",
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/artifactsources": [
+ "2015-05-21-preview",
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/costs": [
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/customimages": [
+ "2015-05-21-preview",
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/formulas": [
+ "2015-05-21-preview",
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/notificationchannels": [
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/policysets/policies": [
+ "2015-05-21-preview",
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/schedules": [
+ "2015-05-21-preview",
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/servicerunners": [
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/users": [
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/users/disks": [
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/users/environments": [
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/users/secrets": [
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/users/servicefabrics": [
+ "2018-09-15"
+ ],
+ "labs/users/servicefabrics/schedules": [
+ "2018-09-15"
+ ],
+ "labs/virtualmachines": [
+ "2015-05-21-preview",
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/virtualmachines/schedules": [
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "labs/virtualnetworks": [
+ "2015-05-21-preview",
+ "2016-05-15",
+ "2018-09-15"
+ ],
+ "schedules": [
+ "2016-05-15",
+ "2018-09-15"
+ ]
+ },
+ "Microsoft.DigitalTwins": {
+ "digitalTwinsInstances": [
+ "2020-03-01-preview",
+ "2020-10-31",
+ "2020-12-01",
+ "2021-06-30-preview",
+ "2022-05-31",
+ "2022-10-31"
+ ],
+ "digitalTwinsInstances/endpoints": [
+ "2020-03-01-preview",
+ "2020-10-31",
+ "2020-12-01",
+ "2021-06-30-preview",
+ "2022-05-31",
+ "2022-10-31"
+ ],
+ "digitalTwinsInstances/privateEndpointConnections": [
+ "2020-12-01",
+ "2021-06-30-preview",
+ "2022-05-31",
+ "2022-10-31"
+ ],
+ "digitalTwinsInstances/timeSeriesDatabaseConnections": [
+ "2021-06-30-preview",
+ "2022-05-31",
+ "2022-10-31"
+ ]
+ },
+ "Microsoft.DocumentDB": {
+ "cassandraClusters": [
+ "2021-03-01-preview",
+ "2021-04-01-preview",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "cassandraClusters/dataCenters": [
+ "2021-03-01-preview",
+ "2021-04-01-preview",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31",
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/apis/databases": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/databases/collections": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/databases/collections/settings": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/databases/containers": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/databases/containers/settings": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/databases/graphs": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/databases/graphs/settings": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/databases/settings": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/keyspaces": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/keyspaces/settings": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/keyspaces/tables": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/keyspaces/tables/settings": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/tables": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/apis/tables/settings": [
+ "2014-04-01",
+ "2015-04-08",
+ "2015-11-06",
+ "2016-03-19",
+ "2016-03-31"
+ ],
+ "databaseAccounts/cassandraKeyspaces": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/cassandraKeyspaces/tables": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/cassandraKeyspaces/tables/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/cassandraKeyspaces/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/cassandraKeyspaces/views": [
+ "2021-07-01-preview",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15-preview",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/cassandraKeyspaces/views/throughputSettings": [
+ "2021-07-01-preview",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15-preview",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/dataTransferJobs": [
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15-preview",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/graphs": [
+ "2021-07-01-preview",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15-preview",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/gremlinDatabases": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/gremlinDatabases/graphs": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/gremlinDatabases/graphs/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/gremlinDatabases/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/mongodbDatabases": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/mongodbDatabases/collections": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/mongodbDatabases/collections/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/mongodbDatabases/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/mongodbRoleDefinitions": [
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/mongodbUserDefinitions": [
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/notebookWorkspaces": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/privateEndpointConnections": [
+ "2019-08-01-preview",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/services": [
+ "2021-04-01-preview",
+ "2021-07-01-preview",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlDatabases": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlDatabases/clientEncryptionKeys": [
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15-preview",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlDatabases/containers": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlDatabases/containers/storedProcedures": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlDatabases/containers/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlDatabases/containers/triggers": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlDatabases/containers/userDefinedFunctions": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlDatabases/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlRoleAssignments": [
+ "2020-06-01-preview",
+ "2021-03-01-preview",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/sqlRoleDefinitions": [
+ "2020-06-01-preview",
+ "2021-03-01-preview",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/tables": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ],
+ "databaseAccounts/tables/throughputSettings": [
+ "2019-08-01",
+ "2019-12-12",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-06-01-preview",
+ "2020-09-01",
+ "2021-01-15",
+ "2021-03-01-preview",
+ "2021-03-15",
+ "2021-04-01-preview",
+ "2021-04-15",
+ "2021-05-15",
+ "2021-06-15",
+ "2021-07-01-preview",
+ "2021-10-15",
+ "2021-10-15-preview",
+ "2021-11-15-preview",
+ "2022-02-15-preview",
+ "2022-05-15",
+ "2022-05-15-preview",
+ "2022-08-15",
+ "2022-08-15-preview"
+ ]
+ },
+ "Microsoft.DomainRegistration": {
+ "domains": [
+ "2015-04-01",
+ "2015-08-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "domains/domainOwnershipIdentifiers": [
+ "2015-04-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "domains/transferOut": [
+ "2021-03-01",
+ "2022-03-01"
+ ]
+ },
+ "Microsoft.Dynamics365FraudProtection": {
+ "instances": [
+ "2021-02-01-preview"
+ ]
+ },
+ "Microsoft.Easm": {
+ "workspaces": [
+ "2022-04-01-preview"
+ ],
+ "workspaces/labels": [
+ "2022-04-01-preview"
+ ]
+ },
+ "Microsoft.EdgeOrder": {
+ "addresses": [
+ "2020-12-01-preview",
+ "2021-12-01",
+ "2022-05-01-preview"
+ ],
+ "orderItems": [
+ "2020-12-01-preview",
+ "2021-12-01",
+ "2022-05-01-preview"
+ ]
+ },
+ "Microsoft.Education": {
+ "labs": [
+ "2021-12-01-preview"
+ ],
+ "labs/students": [
+ "2021-12-01-preview"
+ ]
+ },
+ "Microsoft.Elastic": {
+ "monitors": [
+ "2020-07-01",
+ "2020-07-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01-preview",
+ "2022-05-05-preview",
+ "2022-07-01-preview"
+ ],
+ "monitors/tagRules": [
+ "2020-07-01",
+ "2020-07-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01-preview",
+ "2022-05-05-preview",
+ "2022-07-01-preview"
+ ]
+ },
+ "Microsoft.ElasticSan": {
+ "elasticSans": [
+ "2021-11-20-preview"
+ ],
+ "elasticSans/volumegroups": [
+ "2021-11-20-preview"
+ ],
+ "elasticSans/volumegroups/volumes": [
+ "2021-11-20-preview"
+ ]
+ },
+ "Microsoft.EngagementFabric": {
+ "Accounts": [
+ "2018-09-01"
+ ],
+ "Accounts/Channels": [
+ "2018-09-01"
+ ]
+ },
+ "Microsoft.EnterpriseKnowledgeGraph": {
+ "services": [
+ "2018-12-03"
+ ]
+ },
+ "Microsoft.EventGrid": {
+ "{parentType}/privateEndpointConnections": [
+ "2020-04-01-preview",
+ "2020-06-01",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2021-12-01",
+ "2022-06-15"
+ ],
+ "domains": [
+ "2018-09-15-preview",
+ "2019-02-01-preview",
+ "2019-06-01",
+ "2020-01-01-preview",
+ "2020-04-01-preview",
+ "2020-06-01",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2021-12-01",
+ "2022-06-15"
+ ],
+ "domains/eventSubscriptions": [
+ "2021-10-15-preview",
+ "2022-06-15"
+ ],
+ "domains/topics": [
+ "2019-02-01-preview",
+ "2019-06-01",
+ "2020-01-01-preview",
+ "2020-04-01-preview",
+ "2020-06-01",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2021-12-01",
+ "2022-06-15"
+ ],
+ "domains/topics/eventSubscriptions": [
+ "2021-10-15-preview",
+ "2022-06-15"
+ ],
+ "eventSubscriptions": [
+ "2017-06-15-preview",
+ "2017-09-15-preview",
+ "2018-01-01",
+ "2018-05-01-preview",
+ "2018-09-15-preview",
+ "2019-01-01",
+ "2019-02-01-preview",
+ "2019-06-01",
+ "2020-01-01-preview",
+ "2020-04-01-preview",
+ "2020-06-01",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2021-12-01",
+ "2022-06-15"
+ ],
+ "partnerConfigurations": [
+ "2021-10-15-preview",
+ "2022-06-15"
+ ],
+ "partnerDestinations": [
+ "2021-10-15-preview"
+ ],
+ "partnerNamespaces": [
+ "2020-04-01-preview",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2022-06-15"
+ ],
+ "partnerNamespaces/channels": [
+ "2021-10-15-preview",
+ "2022-06-15"
+ ],
+ "partnerNamespaces/eventChannels": [
+ "2020-04-01-preview",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview"
+ ],
+ "partnerRegistrations": [
+ "2020-04-01-preview",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2022-06-15"
+ ],
+ "partnerTopics": [
+ "2021-10-15-preview",
+ "2022-06-15"
+ ],
+ "partnerTopics/eventSubscriptions": [
+ "2020-04-01-preview",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2022-06-15"
+ ],
+ "systemTopics": [
+ "2020-04-01-preview",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2021-12-01",
+ "2022-06-15"
+ ],
+ "systemTopics/eventSubscriptions": [
+ "2020-04-01-preview",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2021-12-01",
+ "2022-06-15"
+ ],
+ "topics": [
+ "2017-06-15-preview",
+ "2017-09-15-preview",
+ "2018-01-01",
+ "2018-05-01-preview",
+ "2018-09-15-preview",
+ "2019-01-01",
+ "2019-02-01-preview",
+ "2019-06-01",
+ "2020-01-01-preview",
+ "2020-04-01-preview",
+ "2020-06-01",
+ "2020-10-15-preview",
+ "2021-06-01-preview",
+ "2021-10-15-preview",
+ "2021-12-01",
+ "2022-06-15"
+ ],
+ "topics/eventSubscriptions": [
+ "2021-10-15-preview",
+ "2022-06-15"
+ ]
+ },
+ "Microsoft.EventHub": {
+ "clusters": [
+ "2018-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/applicationGroups": [
+ "2022-01-01-preview"
+ ],
+ "namespaces/authorizationRules": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/disasterRecoveryConfigs": [
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/eventhubs": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/eventhubs/authorizationRules": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/eventhubs/consumergroups": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/ipfilterrules": [
+ "2018-01-01-preview"
+ ],
+ "namespaces/networkRuleSets": [
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/privateEndpointConnections": [
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/schemagroups": [
+ "2021-11-01",
+ "2022-01-01-preview"
+ ],
+ "namespaces/virtualnetworkrules": [
+ "2018-01-01-preview"
+ ]
+ },
+ "Microsoft.ExtendedLocation": {
+ "customLocations": [
+ "2021-03-15-preview",
+ "2021-08-15",
+ "2021-08-31-preview"
+ ],
+ "customLocations/resourceSyncRules": [
+ "2021-08-31-preview"
+ ]
+ },
+ "Microsoft.Fabric.Admin": {
+ "fabricLocations/ipPools": [
+ "2016-05-01"
+ ]
+ },
+ "Microsoft.Features": {
+ "featureProviders/subscriptionFeatureRegistrations": [
+ "2021-07-01"
+ ]
+ },
+ "Microsoft.FluidRelay": {
+ "fluidRelayServers": [
+ "2021-03-12-preview",
+ "2021-06-15-preview",
+ "2021-08-30-preview",
+ "2021-09-10-preview",
+ "2022-02-15",
+ "2022-04-21",
+ "2022-05-11",
+ "2022-05-26",
+ "2022-06-01"
+ ]
+ },
+ "Microsoft.GuestConfiguration": {
+ "guestConfigurationAssignments": [
+ "2018-01-20-preview",
+ "2018-06-30-preview",
+ "2018-11-20",
+ "2020-06-25",
+ "2021-01-25",
+ "2022-01-25"
+ ]
+ },
+ "Microsoft.HanaOnAzure": {
+ "hanaInstances": [
+ "2017-11-03-preview"
+ ],
+ "sapMonitors": [
+ "2020-02-07-preview"
+ ],
+ "sapMonitors/providerInstances": [
+ "2020-02-07-preview"
+ ]
+ },
+ "Microsoft.HardwareSecurityModules": {
+ "dedicatedHSMs": [
+ "2018-10-31-preview",
+ "2021-11-30"
+ ]
+ },
+ "Microsoft.HDInsight": {
+ "clusters": [
+ "2015-03-01-preview",
+ "2018-06-01-preview",
+ "2021-06-01"
+ ],
+ "clusters/applications": [
+ "2015-03-01-preview",
+ "2018-06-01-preview",
+ "2021-06-01"
+ ],
+ "clusters/extensions": [
+ "2015-03-01-preview",
+ "2018-06-01-preview",
+ "2021-06-01"
+ ],
+ "clusters/privateEndpointConnections": [
+ "2021-06-01"
+ ]
+ },
+ "Microsoft.HealthBot": {
+ "healthBots": [
+ "2020-10-20",
+ "2020-10-20-preview",
+ "2020-12-08",
+ "2020-12-08-preview",
+ "2021-06-10",
+ "2021-08-24",
+ "2022-08-08"
+ ]
+ },
+ "Microsoft.HealthcareApis": {
+ "services": [
+ "2018-08-20-preview",
+ "2019-09-16",
+ "2020-03-15",
+ "2020-03-30",
+ "2021-01-11",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-31-preview",
+ "2022-05-15",
+ "2022-06-01",
+ "2022-10-01-preview"
+ ],
+ "services/privateEndpointConnections": [
+ "2020-03-30",
+ "2021-01-11",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-31-preview",
+ "2022-05-15",
+ "2022-06-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces": [
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-31-preview",
+ "2022-05-15",
+ "2022-06-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/analyticsconnectors": [
+ "2022-10-01-preview"
+ ],
+ "workspaces/dicomservices": [
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-31-preview",
+ "2022-05-15",
+ "2022-06-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/fhirservices": [
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-31-preview",
+ "2022-05-15",
+ "2022-06-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/iotconnectors": [
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-31-preview",
+ "2022-05-15",
+ "2022-06-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/iotconnectors/fhirdestinations": [
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-31-preview",
+ "2022-05-15",
+ "2022-06-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/privateEndpointConnections": [
+ "2021-11-01",
+ "2022-01-31-preview",
+ "2022-05-15",
+ "2022-06-01",
+ "2022-10-01-preview"
+ ]
+ },
+ "Microsoft.HybridCompute": {
+ "machines": [
+ "2019-03-18",
+ "2019-08-02",
+ "2019-12-12",
+ "2020-07-30-preview",
+ "2020-08-02",
+ "2020-08-15-preview",
+ "2021-01-28-preview",
+ "2021-03-25-preview",
+ "2021-04-22-preview",
+ "2021-05-17-preview",
+ "2021-05-20",
+ "2021-06-10-preview",
+ "2021-12-10-preview",
+ "2022-03-10",
+ "2022-05-10-preview",
+ "2022-08-11-preview",
+ "2022-11-10"
+ ],
+ "machines/extensions": [
+ "2019-08-02",
+ "2019-12-12",
+ "2020-07-30-preview",
+ "2020-08-02",
+ "2020-08-15-preview",
+ "2021-01-28-preview",
+ "2021-03-25-preview",
+ "2021-04-22-preview",
+ "2021-05-17-preview",
+ "2021-05-20",
+ "2021-06-10-preview",
+ "2021-12-10-preview",
+ "2022-03-10",
+ "2022-05-10-preview",
+ "2022-08-11-preview",
+ "2022-11-10"
+ ],
+ "privateLinkScopes": [
+ "2020-08-15-preview",
+ "2021-01-28-preview",
+ "2021-03-25-preview",
+ "2021-04-22-preview",
+ "2021-05-17-preview",
+ "2021-05-20",
+ "2021-06-10-preview",
+ "2021-12-10-preview",
+ "2022-03-10",
+ "2022-05-10-preview",
+ "2022-08-11-preview",
+ "2022-11-10"
+ ],
+ "privateLinkScopes/privateEndpointConnections": [
+ "2020-08-15-preview",
+ "2021-01-28-preview",
+ "2021-03-25-preview",
+ "2021-04-22-preview",
+ "2021-05-17-preview",
+ "2021-05-20",
+ "2021-06-10-preview",
+ "2021-12-10-preview",
+ "2022-03-10",
+ "2022-05-10-preview",
+ "2022-08-11-preview",
+ "2022-11-10"
+ ],
+ "privateLinkScopes/scopedResources": [
+ "2020-08-15-preview"
+ ]
+ },
+ "Microsoft.HybridConnectivity": {
+ "endpoints": [
+ "2021-10-06-preview",
+ "2022-05-01-preview"
+ ]
+ },
+ "Microsoft.HybridContainerService": {
+ "provisionedClusters": [
+ "2022-05-01-preview"
+ ],
+ "provisionedClusters/agentPools": [
+ "2022-05-01-preview"
+ ],
+ "provisionedClusters/hybridIdentityMetadata": [
+ "2022-05-01-preview"
+ ],
+ "storageSpaces": [
+ "2022-05-01-preview"
+ ],
+ "virtualNetworks": [
+ "2022-05-01-preview"
+ ]
+ },
+ "Microsoft.HybridData": {
+ "dataManagers": [
+ "2016-06-01",
+ "2019-06-01"
+ ],
+ "dataManagers/dataServices/jobDefinitions": [
+ "2016-06-01",
+ "2019-06-01"
+ ],
+ "dataManagers/dataStores": [
+ "2016-06-01",
+ "2019-06-01"
+ ]
+ },
+ "Microsoft.HybridNetwork": {
+ "devices": [
+ "2020-01-01-preview",
+ "2021-05-01",
+ "2022-01-01-preview"
+ ],
+ "locations/vendors/networkFunctions": [
+ "2020-01-01-preview",
+ "2021-05-01",
+ "2022-01-01-preview"
+ ],
+ "networkFunctions": [
+ "2020-01-01-preview",
+ "2021-05-01",
+ "2022-01-01-preview"
+ ],
+ "vendors": [
+ "2020-01-01-preview",
+ "2021-05-01",
+ "2022-01-01-preview"
+ ],
+ "vendors/vendorSkus": [
+ "2020-01-01-preview",
+ "2021-05-01",
+ "2022-01-01-preview"
+ ],
+ "vendors/vendorSkus/previewSubscriptions": [
+ "2020-01-01-preview",
+ "2021-05-01",
+ "2022-01-01-preview"
+ ]
+ },
+ "Microsoft.ImportExport": {
+ "jobs": [
+ "2016-11-01",
+ "2020-08-01",
+ "2021-01-01"
+ ]
+ },
+ "Microsoft.InfrastructureInsights.Admin": {
+ "regionHealths/alerts": [
+ "2016-05-01"
+ ]
+ },
+ "microsoft.insights": {
+ "actionGroups": [
+ "2017-04-01",
+ "2018-03-01",
+ "2018-09-01",
+ "2019-03-01",
+ "2019-06-01",
+ "2021-09-01",
+ "2022-04-01",
+ "2022-06-01"
+ ],
+ "activityLogAlerts": [
+ "2017-03-01-preview",
+ "2017-04-01",
+ "2020-10-01"
+ ],
+ "alertrules": [
+ "2014-04-01",
+ "2016-03-01"
+ ],
+ "autoscalesettings": [
+ "2014-04-01",
+ "2015-04-01",
+ "2021-05-01-preview",
+ "2022-10-01"
+ ],
+ "components": [
+ "2015-05-01",
+ "2018-05-01-preview",
+ "2020-02-02",
+ "2020-02-02-preview"
+ ],
+ "components/{scopePath}": [
+ "2015-05-01"
+ ],
+ "components/Annotations": [
+ "2015-05-01"
+ ],
+ "components/currentbillingfeatures": [
+ "2015-05-01"
+ ],
+ "components/exportconfiguration": [
+ "2015-05-01"
+ ],
+ "components/favorites": [
+ "2015-05-01"
+ ],
+ "components/linkedStorageAccounts": [
+ "2020-03-01-preview"
+ ],
+ "components/pricingPlans": [
+ "2017-10-01"
+ ],
+ "components/ProactiveDetectionConfigs": [
+ "2015-05-01",
+ "2018-05-01-preview"
+ ],
+ "dataCollectionEndpoints": [
+ "2021-04-01",
+ "2021-09-01-preview"
+ ],
+ "dataCollectionRuleAssociations": [
+ "2019-11-01-preview",
+ "2021-04-01",
+ "2021-09-01-preview"
+ ],
+ "dataCollectionRules": [
+ "2019-11-01-preview",
+ "2021-04-01",
+ "2021-09-01-preview"
+ ],
+ "diagnosticSettings": [
+ "2015-07-01",
+ "2016-09-01",
+ "2017-05-01-preview",
+ "2020-01-01-preview",
+ "2021-05-01-preview"
+ ],
+ "guestDiagnosticSettings": [
+ "2018-06-01-preview"
+ ],
+ "guestDiagnosticSettingsAssociation": [
+ "2018-06-01-preview"
+ ],
+ "logprofiles": [
+ "2016-03-01"
+ ],
+ "metricAlerts": [
+ "2018-03-01"
+ ],
+ "myWorkbooks": [
+ "2015-05-01",
+ "2020-10-20",
+ "2021-03-08"
+ ],
+ "privateLinkScopes": [
+ "2019-10-17-preview",
+ "2021-07-01-preview"
+ ],
+ "privateLinkScopes/privateEndpointConnections": [
+ "2019-10-17-preview",
+ "2021-07-01-preview"
+ ],
+ "privateLinkScopes/scopedResources": [
+ "2019-10-17-preview",
+ "2021-07-01-preview"
+ ],
+ "scheduledQueryRules": [
+ "2018-04-16",
+ "2020-05-01-preview",
+ "2021-02-01-preview",
+ "2021-08-01",
+ "2022-06-15",
+ "2022-08-01-preview"
+ ],
+ "webtests": [
+ "2015-05-01",
+ "2018-05-01-preview",
+ "2020-10-05-preview",
+ "2022-06-15"
+ ],
+ "workbooks": [
+ "2015-05-01",
+ "2018-06-17-preview",
+ "2020-10-20",
+ "2021-03-08",
+ "2021-08-01",
+ "2022-04-01"
+ ],
+ "workbooktemplates": [
+ "2019-10-17-preview",
+ "2020-11-20"
+ ]
+ },
+ "Microsoft.Intune": {
+ "locations/androidPolicies": [
+ "2015-01-14-preview",
+ "2015-01-14-privatepreview"
+ ],
+ "locations/androidPolicies/apps": [
+ "2015-01-14-preview",
+ "2015-01-14-privatepreview"
+ ],
+ "locations/androidPolicies/groups": [
+ "2015-01-14-preview",
+ "2015-01-14-privatepreview"
+ ],
+ "locations/iosPolicies": [
+ "2015-01-14-preview",
+ "2015-01-14-privatepreview"
+ ],
+ "locations/iosPolicies/apps": [
+ "2015-01-14-preview",
+ "2015-01-14-privatepreview"
+ ],
+ "locations/iosPolicies/groups": [
+ "2015-01-14-preview",
+ "2015-01-14-privatepreview"
+ ]
+ },
+ "Microsoft.IoTCentral": {
+ "iotApps": [
+ "2018-09-01",
+ "2021-06-01",
+ "2021-11-01-preview"
+ ],
+ "iotApps/privateEndpointConnections": [
+ "2021-11-01-preview"
+ ]
+ },
+ "Microsoft.IoTSecurity": {
+ "defenderSettings": [
+ "2021-02-01-preview"
+ ],
+ "locations/deviceGroups": [
+ "2021-02-01-preview"
+ ],
+ "onPremiseSensors": [
+ "2021-02-01-preview"
+ ],
+ "sensors": [
+ "2021-02-01-preview"
+ ],
+ "sites": [
+ "2021-02-01-preview"
+ ]
+ },
+ "Microsoft.KeyVault": {
+ "managedHSMs": [
+ "2020-04-01-preview",
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-07-01"
+ ],
+ "managedHSMs/privateEndpointConnections": [
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-07-01"
+ ],
+ "vaults": [
+ "2015-06-01",
+ "2016-10-01",
+ "2018-02-14",
+ "2018-02-14-preview",
+ "2019-09-01",
+ "2020-04-01-preview",
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-07-01"
+ ],
+ "vaults/accessPolicies": [
+ "2016-10-01",
+ "2018-02-14",
+ "2018-02-14-preview",
+ "2019-09-01",
+ "2020-04-01-preview",
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-07-01"
+ ],
+ "vaults/keys": [
+ "2019-09-01",
+ "2020-04-01-preview",
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-07-01"
+ ],
+ "vaults/privateEndpointConnections": [
+ "2018-02-14",
+ "2019-09-01",
+ "2020-04-01-preview",
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-07-01"
+ ],
+ "vaults/secrets": [
+ "2016-10-01",
+ "2018-02-14",
+ "2018-02-14-preview",
+ "2019-09-01",
+ "2020-04-01-preview",
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-10-01",
+ "2021-11-01-preview",
+ "2022-07-01"
+ ]
+ },
+ "Microsoft.Kubernetes": {
+ "connectedClusters": [
+ "2020-01-01-preview",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-10-01",
+ "2022-05-01-preview",
+ "2022-10-01-preview"
+ ]
+ },
+ "Microsoft.KubernetesConfiguration": {
+ "extensions": [
+ "2020-07-01-preview",
+ "2021-05-01-preview",
+ "2021-09-01",
+ "2021-11-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-04-02-preview",
+ "2022-07-01",
+ "2022-11-01"
+ ],
+ "fluxConfigurations": [
+ "2021-11-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-07-01",
+ "2022-11-01"
+ ],
+ "privateLinkScopes": [
+ "2022-04-02-preview"
+ ],
+ "privateLinkScopes/privateEndpointConnections": [
+ "2022-04-02-preview"
+ ],
+ "sourceControlConfigurations": [
+ "2019-11-01-preview",
+ "2020-07-01-preview",
+ "2020-10-01-preview",
+ "2021-03-01",
+ "2021-05-01-preview",
+ "2021-11-01-preview",
+ "2022-01-01-preview",
+ "2022-03-01",
+ "2022-07-01",
+ "2022-11-01"
+ ]
+ },
+ "Microsoft.Kusto": {
+ "clusters": [
+ "2017-09-07-privatepreview",
+ "2018-09-07-preview",
+ "2019-01-21",
+ "2019-05-15",
+ "2019-09-07",
+ "2019-11-09",
+ "2020-02-15",
+ "2020-06-14",
+ "2020-09-18",
+ "2021-01-01",
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ],
+ "clusters/attachedDatabaseConfigurations": [
+ "2019-09-07",
+ "2019-11-09",
+ "2020-02-15",
+ "2020-06-14",
+ "2020-09-18",
+ "2021-01-01",
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ],
+ "clusters/databases": [
+ "2017-09-07-privatepreview",
+ "2018-09-07-preview",
+ "2019-01-21",
+ "2019-05-15",
+ "2019-09-07",
+ "2019-11-09",
+ "2020-02-15",
+ "2020-06-14",
+ "2020-09-18",
+ "2021-01-01",
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ],
+ "clusters/databases/dataConnections": [
+ "2019-01-21",
+ "2019-05-15",
+ "2019-09-07",
+ "2019-11-09",
+ "2020-02-15",
+ "2020-06-14",
+ "2020-09-18",
+ "2021-01-01",
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ],
+ "clusters/databases/eventhubconnections": [
+ "2017-09-07-privatepreview",
+ "2018-09-07-preview"
+ ],
+ "clusters/databases/principalAssignments": [
+ "2019-11-09",
+ "2020-02-15",
+ "2020-06-14",
+ "2020-09-18",
+ "2021-01-01",
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ],
+ "clusters/databases/scripts": [
+ "2021-01-01",
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ],
+ "clusters/managedPrivateEndpoints": [
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ],
+ "clusters/principalAssignments": [
+ "2019-11-09",
+ "2020-02-15",
+ "2020-06-14",
+ "2020-09-18",
+ "2021-01-01",
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ],
+ "clusters/privateEndpointConnections": [
+ "2021-08-27",
+ "2022-02-01",
+ "2022-07-07",
+ "2022-11-11"
+ ]
+ },
+ "Microsoft.LabServices": {
+ "labaccounts": [
+ "2018-10-15"
+ ],
+ "labaccounts/galleryimages": [
+ "2018-10-15"
+ ],
+ "labaccounts/labs": [
+ "2018-10-15"
+ ],
+ "labaccounts/labs/environmentsettings": [
+ "2018-10-15"
+ ],
+ "labaccounts/labs/environmentsettings/environments": [
+ "2018-10-15"
+ ],
+ "labaccounts/labs/users": [
+ "2018-10-15"
+ ],
+ "labPlans": [
+ "2021-10-01-preview",
+ "2021-11-15-preview",
+ "2022-08-01"
+ ],
+ "labPlans/images": [
+ "2021-10-01-preview",
+ "2021-11-15-preview",
+ "2022-08-01"
+ ],
+ "labs": [
+ "2021-10-01-preview",
+ "2021-11-15-preview",
+ "2022-08-01"
+ ],
+ "labs/schedules": [
+ "2021-10-01-preview",
+ "2021-11-15-preview",
+ "2022-08-01"
+ ],
+ "labs/users": [
+ "2021-10-01-preview",
+ "2021-11-15-preview",
+ "2022-08-01"
+ ]
+ },
+ "Microsoft.LoadTestService": {
+ "loadTests": [
+ "2021-12-01-preview",
+ "2022-04-15-preview",
+ "2022-12-01"
+ ]
+ },
+ "Microsoft.Logic": {
+ "integrationAccounts": [
+ "2015-08-01-preview",
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationAccounts/agreements": [
+ "2015-08-01-preview",
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationAccounts/assemblies": [
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationAccounts/batchConfigurations": [
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationAccounts/certificates": [
+ "2015-08-01-preview",
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationAccounts/maps": [
+ "2015-08-01-preview",
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationAccounts/partners": [
+ "2015-08-01-preview",
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationAccounts/rosettanetprocessconfigurations": [
+ "2016-06-01"
+ ],
+ "integrationAccounts/schemas": [
+ "2015-08-01-preview",
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationAccounts/sessions": [
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "integrationServiceEnvironments": [
+ "2019-05-01"
+ ],
+ "integrationServiceEnvironments/managedApis": [
+ "2019-05-01"
+ ],
+ "workflows": [
+ "2015-02-01-preview",
+ "2016-06-01",
+ "2018-07-01-preview",
+ "2019-05-01"
+ ],
+ "workflows/accessKeys": [
+ "2015-02-01-preview"
+ ]
+ },
+ "Microsoft.Logz": {
+ "monitors": [
+ "2020-10-01",
+ "2020-10-01-preview",
+ "2022-01-01-preview"
+ ],
+ "monitors/accounts": [
+ "2020-10-01",
+ "2020-10-01-preview",
+ "2022-01-01-preview"
+ ],
+ "monitors/accounts/tagRules": [
+ "2020-10-01",
+ "2020-10-01-preview",
+ "2022-01-01-preview"
+ ],
+ "monitors/metricsSource": [
+ "2022-01-01-preview"
+ ],
+ "monitors/metricsSource/tagRules": [
+ "2022-01-01-preview"
+ ],
+ "monitors/singleSignOnConfigurations": [
+ "2020-10-01",
+ "2020-10-01-preview",
+ "2022-01-01-preview"
+ ],
+ "monitors/tagRules": [
+ "2020-10-01",
+ "2020-10-01-preview",
+ "2022-01-01-preview"
+ ]
+ },
+ "Microsoft.M365SecurityAndCompliance": {
+ "privateLinkServicesForEDMUpload": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForEDMUpload/privateEndpointConnections": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForM365ComplianceCenter": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForM365ComplianceCenter/privateEndpointConnections": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForM365SecurityCenter": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForM365SecurityCenter/privateEndpointConnections": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForMIPPolicySync": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForMIPPolicySync/privateEndpointConnections": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForO365ManagementActivityAPI": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForO365ManagementActivityAPI/privateEndpointConnections": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForSCCPowershell": [
+ "2021-03-25-preview"
+ ],
+ "privateLinkServicesForSCCPowershell/privateEndpointConnections": [
+ "2021-03-25-preview"
+ ]
+ },
+ "Microsoft.MachineLearning": {
+ "commitmentPlans": [
+ "2016-05-01-preview"
+ ],
+ "webServices": [
+ "2016-05-01-preview",
+ "2017-01-01"
+ ],
+ "workspaces": [
+ "2016-04-01",
+ "2019-10-01"
+ ]
+ },
+ "Microsoft.MachineLearningCompute": {
+ "operationalizationClusters": [
+ "2017-06-01-preview",
+ "2017-08-01-preview"
+ ]
+ },
+ "Microsoft.MachineLearningExperimentation": {
+ "accounts": [
+ "2017-05-01-preview"
+ ],
+ "accounts/workspaces": [
+ "2017-05-01-preview"
+ ],
+ "accounts/workspaces/projects": [
+ "2017-05-01-preview"
+ ]
+ },
+ "Microsoft.MachineLearningServices": {
+ "registries": [
+ "2022-10-01-preview"
+ ],
+ "registries/codes": [
+ "2022-10-01-preview"
+ ],
+ "registries/codes/versions": [
+ "2022-10-01-preview"
+ ],
+ "registries/components": [
+ "2022-10-01-preview"
+ ],
+ "registries/components/versions": [
+ "2022-10-01-preview"
+ ],
+ "registries/environments": [
+ "2022-10-01-preview"
+ ],
+ "registries/environments/versions": [
+ "2022-10-01-preview"
+ ],
+ "registries/models": [
+ "2022-10-01-preview"
+ ],
+ "registries/models/versions": [
+ "2022-10-01-preview"
+ ],
+ "workspaces": [
+ "2018-03-01-preview",
+ "2018-11-19",
+ "2019-05-01",
+ "2019-06-01",
+ "2019-11-01",
+ "2020-01-01",
+ "2020-02-18-preview",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-04-01-preview",
+ "2020-05-01-preview",
+ "2020-05-15-preview",
+ "2020-06-01",
+ "2020-08-01",
+ "2020-09-01-preview",
+ "2021-01-01",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-07-01",
+ "2022-01-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/batchEndpoints": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/batchEndpoints/deployments": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/codes": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/codes/versions": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/components": [
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/components/versions": [
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/computes": [
+ "2018-03-01-preview",
+ "2018-11-19",
+ "2019-05-01",
+ "2019-06-01",
+ "2019-11-01",
+ "2020-01-01",
+ "2020-02-18-preview",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-04-01-preview",
+ "2020-05-01-preview",
+ "2020-05-15-preview",
+ "2020-06-01",
+ "2020-08-01",
+ "2020-09-01-preview",
+ "2021-01-01",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-07-01",
+ "2022-01-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/connections": [
+ "2020-06-01",
+ "2020-08-01",
+ "2020-09-01-preview",
+ "2021-01-01",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-07-01",
+ "2022-01-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/data": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/data/versions": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/datasets": [
+ "2020-05-01-preview"
+ ],
+ "workspaces/datastores": [
+ "2020-05-01-preview",
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/environments": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/environments/versions": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/jobs": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/labelingJobs": [
+ "2020-09-01-preview",
+ "2021-03-01-preview",
+ "2022-06-01-preview",
+ "2022-10-01-preview"
+ ],
+ "workspaces/linkedServices": [
+ "2020-09-01-preview"
+ ],
+ "workspaces/linkedWorkspaces": [
+ "2020-05-01-preview",
+ "2020-05-15-preview"
+ ],
+ "workspaces/models": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/models/versions": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/onlineEndpoints": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/onlineEndpoints/deployments": [
+ "2021-03-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/privateEndpointConnections": [
+ "2020-01-01",
+ "2020-02-18-preview",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-04-01-preview",
+ "2020-05-01-preview",
+ "2020-05-15-preview",
+ "2020-06-01",
+ "2020-08-01",
+ "2020-09-01-preview",
+ "2021-01-01",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-07-01",
+ "2022-01-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01",
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/schedules": [
+ "2022-06-01-preview",
+ "2022-10-01",
+ "2022-10-01-preview"
+ ],
+ "workspaces/services": [
+ "2020-05-01-preview",
+ "2020-05-15-preview",
+ "2020-09-01-preview",
+ "2021-01-01",
+ "2021-04-01"
+ ]
+ },
+ "Microsoft.Maintenance": {
+ "applyUpdates": [
+ "2018-06-01-preview",
+ "2020-04-01",
+ "2020-07-01-preview",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-09-01-preview",
+ "2022-07-01-preview"
+ ],
+ "configurationAssignments": [
+ "2018-06-01-preview",
+ "2020-04-01",
+ "2020-07-01-preview",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-09-01-preview",
+ "2022-07-01-preview"
+ ],
+ "maintenanceConfigurations": [
+ "2018-06-01-preview",
+ "2020-04-01",
+ "2020-07-01-preview",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-09-01-preview",
+ "2022-07-01-preview"
+ ]
+ },
+ "Microsoft.ManagedIdentity": {
+ "userAssignedIdentities": [
+ "2015-08-31-preview",
+ "2018-11-30",
+ "2021-09-30-preview",
+ "2022-01-31-preview"
+ ],
+ "userAssignedIdentities/federatedIdentityCredentials": [
+ "2022-01-31-preview"
+ ]
+ },
+ "Microsoft.ManagedNetwork": {
+ "managedNetworks": [
+ "2019-06-01-preview"
+ ],
+ "managedNetworks/managedNetworkGroups": [
+ "2019-06-01-preview"
+ ],
+ "managedNetworks/managedNetworkPeeringPolicies": [
+ "2019-06-01-preview"
+ ],
+ "scopeAssignments": [
+ "2019-06-01-preview"
+ ]
+ },
+ "Microsoft.ManagedServices": {
+ "registrationAssignments": [
+ "2018-06-01-preview",
+ "2019-04-01-preview",
+ "2019-06-01",
+ "2019-09-01",
+ "2020-02-01-preview",
+ "2022-01-01-preview",
+ "2022-10-01"
+ ],
+ "registrationDefinitions": [
+ "2018-06-01-preview",
+ "2019-04-01-preview",
+ "2019-06-01",
+ "2019-09-01",
+ "2020-02-01-preview",
+ "2022-01-01-preview",
+ "2022-10-01"
+ ]
+ },
+ "Microsoft.Management": {
+ "managementGroups": [
+ "2017-11-01-preview",
+ "2018-01-01-preview",
+ "2018-03-01-preview",
+ "2019-11-01",
+ "2020-02-01",
+ "2020-05-01",
+ "2020-10-01",
+ "2021-04-01"
+ ],
+ "managementGroups/settings": [
+ "2020-02-01",
+ "2020-05-01",
+ "2020-10-01",
+ "2021-04-01"
+ ],
+ "managementGroups/subscriptions": [
+ "2017-11-01-preview",
+ "2018-01-01-preview",
+ "2018-03-01-preview",
+ "2019-11-01",
+ "2020-02-01",
+ "2020-05-01",
+ "2020-10-01",
+ "2021-04-01"
+ ]
+ },
+ "Microsoft.ManagementPartner": {
+ "partners": [
+ "2018-02-01"
+ ]
+ },
+ "Microsoft.Maps": {
+ "accounts": [
+ "2017-01-01-preview",
+ "2018-05-01",
+ "2020-02-01-preview",
+ "2021-02-01",
+ "2021-07-01-preview",
+ "2021-12-01-preview"
+ ],
+ "accounts/creators": [
+ "2020-02-01-preview",
+ "2021-02-01",
+ "2021-07-01-preview",
+ "2021-12-01-preview"
+ ],
+ "accounts/privateAtlases": [
+ "2020-02-01-preview"
+ ]
+ },
+ "Microsoft.Marketplace": {
+ "privateStores": [
+ "2020-01-01",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-03-01",
+ "2022-09-01"
+ ],
+ "privateStores/adminRequestApprovals": [
+ "2020-12-01",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-03-01",
+ "2022-09-01"
+ ],
+ "privateStores/collections": [
+ "2021-06-01",
+ "2021-12-01",
+ "2022-03-01",
+ "2022-09-01"
+ ],
+ "privateStores/collections/offers": [
+ "2021-06-01",
+ "2021-12-01",
+ "2022-03-01",
+ "2022-09-01"
+ ],
+ "privateStores/offers": [
+ "2020-01-01"
+ ],
+ "privateStores/requestApprovals": [
+ "2020-12-01",
+ "2021-06-01",
+ "2021-12-01",
+ "2022-03-01",
+ "2022-09-01"
+ ]
+ },
+ "Microsoft.MarketplaceOrdering": {
+ "offerTypes/publishers/offers/plans/agreements": [
+ "2015-06-01",
+ "2021-01-01"
+ ]
+ },
+ "Microsoft.Media": {
+ "mediaservices": [
+ "2015-10-01",
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-11-01"
+ ],
+ "mediaServices/accountFilters": [
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaServices/assets": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaServices/assets/assetFilters": [
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaServices/assets/tracks": [
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaServices/contentKeyPolicies": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaservices/liveEvents": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaservices/liveEvents/liveOutputs": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaServices/mediaGraphs": [
+ "2019-09-01-preview",
+ "2020-02-01-preview"
+ ],
+ "mediaservices/privateEndpointConnections": [
+ "2020-05-01",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-11-01"
+ ],
+ "mediaservices/streamingEndpoints": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaServices/streamingLocators": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaServices/streamingPolicies": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01",
+ "2022-08-01"
+ ],
+ "mediaServices/transforms": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01"
+ ],
+ "mediaServices/transforms/jobs": [
+ "2018-03-30-preview",
+ "2018-06-01-preview",
+ "2018-07-01",
+ "2019-05-01-preview",
+ "2020-05-01",
+ "2021-06-01",
+ "2021-11-01"
+ ],
+ "videoAnalyzers": [
+ "2021-05-01-preview",
+ "2021-11-01-preview"
+ ],
+ "videoAnalyzers/accessPolicies": [
+ "2021-05-01-preview",
+ "2021-11-01-preview"
+ ],
+ "videoAnalyzers/edgeModules": [
+ "2021-05-01-preview",
+ "2021-11-01-preview"
+ ],
+ "videoAnalyzers/livePipelines": [
+ "2021-11-01-preview"
+ ],
+ "videoAnalyzers/pipelineJobs": [
+ "2021-11-01-preview"
+ ],
+ "videoAnalyzers/pipelineTopologies": [
+ "2021-11-01-preview"
+ ],
+ "videoAnalyzers/privateEndpointConnections": [
+ "2021-11-01-preview"
+ ],
+ "videoAnalyzers/videos": [
+ "2021-05-01-preview",
+ "2021-11-01-preview"
+ ]
+ },
+ "Microsoft.Migrate": {
+ "assessmentProjects": [
+ "2019-10-01"
+ ],
+ "assessmentProjects/groups": [
+ "2019-10-01"
+ ],
+ "assessmentProjects/groups/assessments": [
+ "2019-10-01"
+ ],
+ "assessmentProjects/hypervcollectors": [
+ "2019-10-01"
+ ],
+ "assessmentProjects/importcollectors": [
+ "2019-10-01"
+ ],
+ "assessmentprojects/privateEndpointConnections": [
+ "2019-10-01"
+ ],
+ "assessmentProjects/servercollectors": [
+ "2019-10-01"
+ ],
+ "assessmentProjects/vmwarecollectors": [
+ "2019-10-01"
+ ],
+ "migrateProjects": [
+ "2018-09-01-preview",
+ "2020-05-01"
+ ],
+ "migrateProjects/privateEndpointConnections": [
+ "2020-05-01"
+ ],
+ "migrateProjects/solutions": [
+ "2018-09-01-preview"
+ ],
+ "moveCollections": [
+ "2019-10-01-preview",
+ "2021-01-01",
+ "2021-08-01"
+ ],
+ "moveCollections/moveResources": [
+ "2019-10-01-preview",
+ "2021-01-01",
+ "2021-08-01"
+ ],
+ "projects": [
+ "2017-11-11-preview",
+ "2018-02-02"
+ ],
+ "projects/groups": [
+ "2017-11-11-preview",
+ "2018-02-02"
+ ],
+ "projects/groups/assessments": [
+ "2017-11-11-preview",
+ "2018-02-02"
+ ]
+ },
+ "Microsoft.MixedReality": {
+ "objectAnchorsAccounts": [
+ "2021-03-01-preview"
+ ],
+ "remoteRenderingAccounts": [
+ "2019-12-02-preview",
+ "2020-04-06-preview",
+ "2021-01-01",
+ "2021-03-01-preview"
+ ],
+ "spatialAnchorsAccounts": [
+ "2019-02-28-preview",
+ "2019-12-02-preview",
+ "2020-05-01",
+ "2021-01-01",
+ "2021-03-01-preview"
+ ]
+ },
+ "Microsoft.MobileNetwork": {
+ "mobileNetworks": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "mobileNetworks/dataNetworks": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "mobileNetworks/services": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "mobileNetworks/simPolicies": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "mobileNetworks/sites": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "mobileNetworks/slices": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "packetCoreControlPlanes": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "packetCoreControlPlanes/packetCoreDataPlanes": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "packetCoreControlPlanes/packetCoreDataPlanes/attachedDataNetworks": [
+ "2022-03-01-preview",
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "simGroups": [
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "simGroups/sims": [
+ "2022-04-01-preview",
+ "2022-11-01"
+ ],
+ "sims": [
+ "2022-03-01-preview"
+ ]
+ },
+ "Microsoft.Monitor": {
+ "accounts": [
+ "2021-06-03-preview"
+ ]
+ },
+ "Microsoft.NetApp": {
+ "netAppAccounts": [
+ "2017-08-15",
+ "2019-05-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-10-01",
+ "2019-11-01",
+ "2020-02-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-04-01-preview",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/backupPolicies": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-04-01-preview",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/capacityPools": [
+ "2017-08-15",
+ "2019-05-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-10-01",
+ "2019-11-01",
+ "2020-02-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-04-01-preview",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/capacityPools/volumes": [
+ "2017-08-15",
+ "2019-05-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-10-01",
+ "2019-11-01",
+ "2020-02-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-04-01-preview",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/capacityPools/volumes/backups": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-04-01-preview",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/capacityPools/volumes/snapshots": [
+ "2017-08-15",
+ "2019-05-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-10-01",
+ "2019-11-01",
+ "2020-02-01",
+ "2020-03-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-04-01-preview",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/capacityPools/volumes/subvolumes": [
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/capacityPools/volumes/volumeQuotaRules": [
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/snapshotPolicies": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-09-01",
+ "2020-11-01",
+ "2020-12-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-04-01-preview",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ],
+ "netAppAccounts/volumeGroups": [
+ "2021-08-01",
+ "2021-10-01",
+ "2022-01-01",
+ "2022-03-01",
+ "2022-05-01"
+ ]
+ },
+ "Microsoft.Network": {
+ "applicationGateways": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "applicationGateways/privateEndpointConnections": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "ApplicationGatewayWebApplicationFirewallPolicies": [
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "applicationSecurityGroups": [
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "azureFirewalls": [
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "bastionHosts": [
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "cloudServiceSlots": [
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "connections": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "connections/sharedkey": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "customIpPrefixes": [
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "ddosCustomPolicies": [
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "ddosProtectionPlans": [
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "dnsForwardingRulesets": [
+ "2020-04-01-preview",
+ "2022-07-01"
+ ],
+ "dnsForwardingRulesets/forwardingRules": [
+ "2020-04-01-preview",
+ "2022-07-01"
+ ],
+ "dnsForwardingRulesets/virtualNetworkLinks": [
+ "2020-04-01-preview",
+ "2022-07-01"
+ ],
+ "dnsResolvers": [
+ "2020-04-01-preview",
+ "2022-07-01"
+ ],
+ "dnsResolvers/inboundEndpoints": [
+ "2020-04-01-preview",
+ "2022-07-01"
+ ],
+ "dnsResolvers/outboundEndpoints": [
+ "2020-04-01-preview",
+ "2022-07-01"
+ ],
+ "dnszones": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/A": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/AAAA": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnsZones/CAA": [
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/CNAME": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/MX": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/NS": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/PTR": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/SOA": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/SRV": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dnszones/TXT": [
+ "2015-05-04-preview",
+ "2016-04-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2018-03-01-preview",
+ "2018-05-01"
+ ],
+ "dscpConfigurations": [
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRouteCircuits": [
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRouteCircuits/authorizations": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRouteCircuits/peerings": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRouteCircuits/peerings/connections": [
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRouteCrossConnections": [
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRouteCrossConnections/peerings": [
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRouteGateways": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRouteGateways/expressRouteConnections": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "ExpressRoutePorts": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "expressRoutePorts/authorizations": [
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "firewallPolicies": [
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "firewallPolicies/ruleCollectionGroups": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "firewallPolicies/ruleGroups": [
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01"
+ ],
+ "firewallPolicies/signatureOverrides": [
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "frontDoors": [
+ "2018-08-01-preview",
+ "2019-04-01",
+ "2019-05-01",
+ "2020-01-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2021-06-01"
+ ],
+ "frontDoors/rulesEngines": [
+ "2020-01-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2021-06-01"
+ ],
+ "FrontDoorWebApplicationFirewallPolicies": [
+ "2018-08-01-preview",
+ "2019-03-01",
+ "2019-03-01-preview",
+ "2019-10-01",
+ "2020-04-01",
+ "2020-11-01",
+ "2021-06-01",
+ "2022-05-01"
+ ],
+ "interfaceEndpoints": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01"
+ ],
+ "IpAllocations": [
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "ipGroups": [
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "loadBalancers": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "loadBalancers/backendAddressPools": [
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "loadBalancers/inboundNatRules": [
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "localNetworkGateways": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "managementGroups/networkManagerConnections": [
+ "2021-05-01-preview"
+ ],
+ "natGateways": [
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "NetworkExperimentProfiles": [
+ "2019-11-01"
+ ],
+ "NetworkExperimentProfiles/Experiments": [
+ "2019-11-01"
+ ],
+ "networkInterfaces": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkInterfaces/tapConfigurations": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagerConnections": [
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers/connectivityConfigurations": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers/networkGroups": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers/networkGroups/staticMembers": [
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers/scopeConnections": [
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers/securityAdminConfigurations": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers/securityAdminConfigurations/ruleCollections": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers/securityAdminConfigurations/ruleCollections/rules": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkManagers/securityUserConfigurations": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-02-01-preview",
+ "2022-04-01-preview"
+ ],
+ "networkManagers/securityUserConfigurations/ruleCollections": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-02-01-preview",
+ "2022-04-01-preview"
+ ],
+ "networkManagers/securityUserConfigurations/ruleCollections/rules": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2022-02-01-preview",
+ "2022-04-01-preview"
+ ],
+ "networkProfiles": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkSecurityGroups": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkSecurityGroups/securityRules": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkSecurityPerimeters": [
+ "2021-02-01-preview",
+ "2021-03-01-preview"
+ ],
+ "networkSecurityPerimeters/links": [
+ "2021-02-01-preview"
+ ],
+ "networkSecurityPerimeters/profiles": [
+ "2021-02-01-preview"
+ ],
+ "networkSecurityPerimeters/profiles/accessRules": [
+ "2021-02-01-preview"
+ ],
+ "networkSecurityPerimeters/resourceAssociations": [
+ "2021-02-01-preview"
+ ],
+ "networkVirtualAppliances": [
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkVirtualAppliances/inboundSecurityRules": [
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkVirtualAppliances/virtualApplianceSites": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkWatchers": [
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkWatchers/connectionMonitors": [
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkWatchers/flowLogs": [
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "networkWatchers/packetCaptures": [
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "p2svpnGateways": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "privateDnsZones": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/A": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/AAAA": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/CNAME": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/MX": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/PTR": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/SOA": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/SRV": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/TXT": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateDnsZones/virtualNetworkLinks": [
+ "2018-09-01",
+ "2020-01-01",
+ "2020-06-01"
+ ],
+ "privateEndpoints": [
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "privateEndpoints/privateDnsZoneGroups": [
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "privateLinkServices": [
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "privateLinkServices/privateEndpointConnections": [
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "publicIPAddresses": [
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "publicIPPrefixes": [
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "routeFilters": [
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "routeFilters/routeFilterRules": [
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "routeTables": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "routeTables/routes": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "securityPartnerProviders": [
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "serviceEndpointPolicies": [
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "serviceEndpointPolicies/serviceEndpointPolicyDefinitions": [
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "trafficmanagerprofiles": [
+ "2015-11-01",
+ "2017-03-01",
+ "2017-05-01",
+ "2018-02-01",
+ "2018-03-01",
+ "2018-04-01",
+ "2018-08-01",
+ "2022-04-01-preview"
+ ],
+ "trafficmanagerprofiles/AzureEndpoints": [
+ "2018-08-01",
+ "2022-04-01-preview"
+ ],
+ "trafficmanagerprofiles/ExternalEndpoints": [
+ "2018-08-01",
+ "2022-04-01-preview"
+ ],
+ "trafficmanagerprofiles/NestedEndpoints": [
+ "2018-08-01",
+ "2022-04-01-preview"
+ ],
+ "trafficManagerUserMetricsKeys": [
+ "2017-09-01-preview",
+ "2018-04-01",
+ "2018-08-01",
+ "2022-04-01-preview"
+ ],
+ "virtualHubs": [
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualHubs/bgpConnections": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualHubs/hubRouteTables": [
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualHubs/hubVirtualNetworkConnections": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualHubs/ipConfigurations": [
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualHubs/routeMaps": [
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualHubs/routeTables": [
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualHubs/routingIntent": [
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualnetworkgateways": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualNetworkGateways/natRules": [
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualnetworks": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualnetworks/subnets": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-03-30",
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualNetworks/virtualNetworkPeerings": [
+ "2016-06-01",
+ "2016-09-01",
+ "2016-12-01",
+ "2017-03-01",
+ "2017-06-01",
+ "2017-08-01",
+ "2017-09-01",
+ "2017-10-01",
+ "2017-11-01",
+ "2018-01-01",
+ "2018-02-01",
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualNetworkTaps": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualRouters": [
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualRouters/peerings": [
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualWans": [
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "virtualWans/p2sVpnServerConfigurations": [
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01"
+ ],
+ "vpnGateways": [
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "vpnGateways/natRules": [
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "vpnGateways/vpnConnections": [
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "vpnServerConfigurations": [
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "vpnServerConfigurations/configurationPolicyGroups": [
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ],
+ "vpnSites": [
+ "2018-04-01",
+ "2018-06-01",
+ "2018-07-01",
+ "2018-08-01",
+ "2018-10-01",
+ "2018-11-01",
+ "2018-12-01",
+ "2019-02-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-09-01",
+ "2019-11-01",
+ "2019-12-01",
+ "2020-03-01",
+ "2020-04-01",
+ "2020-05-01",
+ "2020-06-01",
+ "2020-07-01",
+ "2020-08-01",
+ "2020-11-01",
+ "2021-02-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-08-01",
+ "2022-01-01",
+ "2022-05-01",
+ "2022-07-01"
+ ]
+ },
+ "Microsoft.Network.Admin": {
+ "locations/quotas": [
+ "2015-06-15"
+ ]
+ },
+ "Microsoft.NetworkFunction": {
+ "azureTrafficCollectors": [
+ "2021-09-01-preview",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-11-01"
+ ],
+ "azureTrafficCollectors/collectorPolicies": [
+ "2021-09-01-preview",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-11-01"
+ ]
+ },
+ "Microsoft.NotificationHubs": {
+ "namespaces": [
+ "2014-09-01",
+ "2016-03-01",
+ "2017-04-01"
+ ],
+ "namespaces/AuthorizationRules": [
+ "2014-09-01",
+ "2016-03-01",
+ "2017-04-01"
+ ],
+ "namespaces/notificationHubs": [
+ "2014-09-01",
+ "2016-03-01",
+ "2017-04-01"
+ ],
+ "namespaces/notificationHubs/AuthorizationRules": [
+ "2014-09-01",
+ "2016-03-01",
+ "2017-04-01"
+ ]
+ },
+ "Microsoft.OffAzure": {
+ "HyperVSites": [
+ "2020-01-01",
+ "2020-07-07"
+ ],
+ "HyperVSites/clusters": [
+ "2020-01-01",
+ "2020-07-07"
+ ],
+ "HyperVSites/hosts": [
+ "2020-01-01",
+ "2020-07-07"
+ ],
+ "MasterSites": [
+ "2020-07-07"
+ ],
+ "masterSites/privateEndpointConnections": [
+ "2020-07-07"
+ ],
+ "VMwareSites": [
+ "2020-01-01",
+ "2020-07-07"
+ ],
+ "VMwareSites/vCenters": [
+ "2020-01-01",
+ "2020-07-07"
+ ]
+ },
+ "Microsoft.OpenEnergyPlatform": {
+ "energyServices": [
+ "2021-06-01-preview",
+ "2022-04-04-preview"
+ ]
+ },
+ "Microsoft.OperationalInsights": {
+ "clusters": [
+ "2019-08-01-preview",
+ "2020-03-01-preview",
+ "2020-08-01",
+ "2020-10-01",
+ "2021-06-01"
+ ],
+ "queryPacks": [
+ "2019-09-01",
+ "2019-09-01-preview"
+ ],
+ "queryPacks/queries": [
+ "2019-09-01",
+ "2019-09-01-preview"
+ ],
+ "workspaces": [
+ "2015-11-01-preview",
+ "2020-03-01-preview",
+ "2020-08-01",
+ "2020-10-01",
+ "2021-06-01",
+ "2021-12-01-preview",
+ "2022-10-01"
+ ],
+ "workspaces/dataExports": [
+ "2019-08-01-preview",
+ "2020-03-01-preview",
+ "2020-08-01"
+ ],
+ "workspaces/dataSources": [
+ "2015-11-01-preview",
+ "2020-03-01-preview",
+ "2020-08-01"
+ ],
+ "workspaces/features/machineGroups": [
+ "2015-11-01-preview"
+ ],
+ "workspaces/linkedServices": [
+ "2015-11-01-preview",
+ "2019-08-01-preview",
+ "2020-03-01-preview",
+ "2020-08-01"
+ ],
+ "workspaces/linkedStorageAccounts": [
+ "2019-08-01-preview",
+ "2020-03-01-preview",
+ "2020-08-01"
+ ],
+ "workspaces/savedSearches": [
+ "2015-03-20",
+ "2020-03-01-preview",
+ "2020-08-01"
+ ],
+ "workspaces/storageInsightConfigs": [
+ "2015-03-20",
+ "2020-03-01-preview",
+ "2020-08-01"
+ ],
+ "workspaces/tables": [
+ "2021-12-01-preview",
+ "2022-10-01"
+ ]
+ },
+ "Microsoft.OperationsManagement": {
+ "ManagementAssociations": [
+ "2015-11-01-preview"
+ ],
+ "ManagementConfigurations": [
+ "2015-11-01-preview"
+ ],
+ "solutions": [
+ "2015-11-01-preview"
+ ]
+ },
+ "Microsoft.Orbital": {
+ "contactProfiles": [
+ "2021-04-04-preview",
+ "2022-03-01"
+ ],
+ "spacecrafts": [
+ "2021-04-04-preview",
+ "2022-03-01"
+ ],
+ "spacecrafts/contacts": [
+ "2021-04-04-preview",
+ "2022-03-01"
+ ]
+ },
+ "Microsoft.Peering": {
+ "peerAsns": [
+ "2019-08-01-preview",
+ "2019-09-01-preview",
+ "2020-01-01-preview",
+ "2020-04-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "peerings": [
+ "2019-08-01-preview",
+ "2019-09-01-preview",
+ "2020-01-01-preview",
+ "2020-04-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "peerings/registeredAsns": [
+ "2020-01-01-preview",
+ "2020-04-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "peerings/registeredPrefixes": [
+ "2020-01-01-preview",
+ "2020-04-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "peeringServices": [
+ "2019-08-01-preview",
+ "2019-09-01-preview",
+ "2020-01-01-preview",
+ "2020-04-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "peeringServices/connectionMonitorTests": [
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ],
+ "peeringServices/prefixes": [
+ "2019-08-01-preview",
+ "2019-09-01-preview",
+ "2020-01-01-preview",
+ "2020-04-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-06-01",
+ "2022-01-01",
+ "2022-06-01",
+ "2022-10-01"
+ ]
+ },
+ "Microsoft.PolicyInsights": {
+ "attestations": [
+ "2021-01-01",
+ "2022-09-01"
+ ],
+ "remediations": [
+ "2018-07-01-preview",
+ "2019-07-01",
+ "2021-10-01"
+ ]
+ },
+ "Microsoft.Portal": {
+ "consoles": [
+ "2018-10-01"
+ ],
+ "dashboards": [
+ "2015-08-01-preview",
+ "2018-10-01-preview",
+ "2019-01-01-preview",
+ "2020-09-01-preview"
+ ],
+ "locations/consoles": [
+ "2018-10-01"
+ ],
+ "locations/userSettings": [
+ "2018-10-01"
+ ],
+ "tenantConfigurations": [
+ "2019-01-01-preview",
+ "2020-09-01-preview"
+ ],
+ "userSettings": [
+ "2018-10-01"
+ ]
+ },
+ "Microsoft.PowerBI": {
+ "privateLinkServicesForPowerBI": [
+ "2020-06-01"
+ ],
+ "privateLinkServicesForPowerBI/privateEndpointConnections": [
+ "2020-06-01"
+ ],
+ "workspaceCollections": [
+ "2016-01-29"
+ ]
+ },
+ "Microsoft.PowerBIDedicated": {
+ "autoScaleVCores": [
+ "2021-01-01"
+ ],
+ "capacities": [
+ "2017-10-01",
+ "2021-01-01"
+ ]
+ },
+ "Microsoft.PowerPlatform": {
+ "accounts": [
+ "2020-10-30-preview"
+ ],
+ "enterprisePolicies": [
+ "2020-10-30-preview"
+ ],
+ "enterprisePolicies/privateEndpointConnections": [
+ "2020-10-30-preview"
+ ]
+ },
+ "Microsoft.ProviderHub": {
+ "providerRegistrations": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/customRollouts": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/defaultRollouts": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/notificationRegistrations": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/operations": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/resourcetypeRegistrations": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/skus": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/skus": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/resourcetypeRegistrations/resourcetypeRegistrations/skus": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ],
+ "providerRegistrations/resourcetypeRegistrations/skus": [
+ "2020-11-20",
+ "2021-05-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview"
+ ]
+ },
+ "Microsoft.Purview": {
+ "accounts": [
+ "2020-12-01-preview",
+ "2021-07-01"
+ ],
+ "accounts/privateEndpointConnections": [
+ "2020-12-01-preview",
+ "2021-07-01"
+ ]
+ },
+ "Microsoft.Quantum": {
+ "workspaces": [
+ "2019-11-04-preview",
+ "2022-01-10-preview"
+ ]
+ },
+ "Microsoft.Quota": {
+ "quotaLimits": [
+ "2021-03-15"
+ ],
+ "quotas": [
+ "2021-03-15-preview"
+ ]
+ },
+ "Microsoft.RecommendationsService": {
+ "accounts": [
+ "2022-02-01",
+ "2022-03-01-preview"
+ ],
+ "accounts/modeling": [
+ "2022-02-01",
+ "2022-03-01-preview"
+ ],
+ "accounts/serviceEndpoints": [
+ "2022-02-01",
+ "2022-03-01-preview"
+ ]
+ },
+ "Microsoft.RecoveryServices": {
+ "vaults": [
+ "2016-06-01",
+ "2020-02-02",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-11-01-preview",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-01-31-preview",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-09-30-preview",
+ "2022-10-01"
+ ],
+ "vaults/backupconfig": [
+ "2019-06-15",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/backupEncryptionConfigs": [
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/backupFabrics/backupProtectionIntent": [
+ "2017-07-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/backupFabrics/protectionContainers": [
+ "2016-12-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/backupFabrics/protectionContainers/protectedItems": [
+ "2016-06-01",
+ "2019-05-13",
+ "2019-06-15",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/backupPolicies": [
+ "2016-06-01",
+ "2019-05-13",
+ "2019-06-15",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/backupResourceGuardProxies": [
+ "2021-02-01-preview",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/backupstorageconfig": [
+ "2016-12-01",
+ "2018-12-20",
+ "2021-04-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-15",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/certificates": [
+ "2016-06-01",
+ "2020-02-02",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-11-01-preview",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-01-31-preview",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-09-30-preview",
+ "2022-10-01"
+ ],
+ "vaults/extendedInformation": [
+ "2016-06-01",
+ "2020-02-02",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-11-01-preview",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-01-31-preview",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-09-30-preview",
+ "2022-10-01"
+ ],
+ "vaults/privateEndpointConnections": [
+ "2020-02-02",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-02-01-preview",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-06-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01"
+ ],
+ "vaults/replicationAlertSettings": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics/replicationProtectionContainers": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems": [
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics/replicationRecoveryServicesProviders": [
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationFabrics/replicationvCenters": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationPolicies": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationProtectionIntents": [
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationRecoveryPlans": [
+ "2016-08-10",
+ "2018-01-10",
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ],
+ "vaults/replicationVaultSettings": [
+ "2018-07-10",
+ "2021-02-10",
+ "2021-03-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2021-08-01",
+ "2021-10-01",
+ "2021-11-01",
+ "2021-12-01",
+ "2022-01-01",
+ "2022-02-01",
+ "2022-03-01",
+ "2022-04-01",
+ "2022-05-01",
+ "2022-08-01",
+ "2022-09-10",
+ "2022-10-01"
+ ]
+ },
+ "Microsoft.RedHatOpenShift": {
+ "openShiftClusters": [
+ "2020-04-30",
+ "2021-09-01-preview",
+ "2022-04-01",
+ "2022-09-04"
+ ],
+ "openshiftclusters/machinePool": [
+ "2022-09-04"
+ ],
+ "openshiftclusters/secret": [
+ "2022-09-04"
+ ],
+ "openshiftclusters/syncIdentityProvider": [
+ "2022-09-04"
+ ],
+ "openshiftclusters/syncSet": [
+ "2022-09-04"
+ ]
+ },
+ "Microsoft.Relay": {
+ "namespaces": [
+ "2016-07-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-11-01"
+ ],
+ "namespaces/authorizationRules": [
+ "2016-07-01",
+ "2017-04-01",
+ "2021-11-01"
+ ],
+ "namespaces/hybridConnections": [
+ "2016-07-01",
+ "2017-04-01",
+ "2021-11-01"
+ ],
+ "namespaces/hybridConnections/authorizationRules": [
+ "2016-07-01",
+ "2017-04-01",
+ "2021-11-01"
+ ],
+ "namespaces/networkRuleSets": [
+ "2018-01-01-preview",
+ "2021-11-01"
+ ],
+ "namespaces/privateEndpointConnections": [
+ "2018-01-01-preview",
+ "2021-11-01"
+ ],
+ "namespaces/wcfRelays": [
+ "2016-07-01",
+ "2017-04-01",
+ "2021-11-01"
+ ],
+ "namespaces/wcfRelays/authorizationRules": [
+ "2016-07-01",
+ "2017-04-01",
+ "2021-11-01"
+ ]
+ },
+ "Microsoft.ResourceConnector": {
+ "appliances": [
+ "2021-10-31-preview",
+ "2022-04-15-preview",
+ "2022-10-27"
+ ]
+ },
+ "Microsoft.ResourceGraph": {
+ "queries": [
+ "2018-09-01-preview",
+ "2020-04-01-preview"
+ ]
+ },
+ "Microsoft.Resources": {
+ "deployments": [
+ "2015-11-01",
+ "2016-02-01",
+ "2016-07-01",
+ "2016-09-01",
+ "2017-05-10",
+ "2018-02-01",
+ "2018-05-01",
+ "2019-03-01",
+ "2019-05-01",
+ "2019-05-10",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-10-01",
+ "2020-06-01",
+ "2020-08-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-04-01",
+ "2022-09-01"
+ ],
+ "deploymentScripts": [
+ "2019-10-01-preview",
+ "2020-10-01"
+ ],
+ "resourceGroups": [
+ "2015-11-01",
+ "2016-02-01",
+ "2016-07-01",
+ "2016-09-01",
+ "2017-05-10",
+ "2018-02-01",
+ "2018-05-01",
+ "2019-03-01",
+ "2019-05-01",
+ "2019-05-10",
+ "2019-07-01",
+ "2019-08-01",
+ "2019-10-01",
+ "2020-06-01",
+ "2020-08-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-04-01",
+ "2022-09-01"
+ ],
+ "tags": [
+ "2019-10-01",
+ "2020-06-01",
+ "2020-08-01",
+ "2020-10-01",
+ "2021-01-01",
+ "2021-04-01",
+ "2022-09-01"
+ ],
+ "templateSpecs": [
+ "2019-06-01-preview",
+ "2021-03-01-preview",
+ "2021-05-01",
+ "2022-02-01"
+ ],
+ "templateSpecs/versions": [
+ "2019-06-01-preview",
+ "2021-03-01-preview",
+ "2021-05-01",
+ "2022-02-01"
+ ]
+ },
+ "Microsoft.SaaS": {
+ "resources": [
+ "2018-03-01-beta"
+ ],
+ "saasresources": [
+ "2018-03-01-beta"
+ ]
+ },
+ "Microsoft.Scheduler": {
+ "jobCollections": [
+ "2014-08-01-preview",
+ "2016-01-01",
+ "2016-03-01"
+ ],
+ "jobCollections/jobs": [
+ "2014-08-01-preview",
+ "2016-01-01",
+ "2016-03-01"
+ ]
+ },
+ "Microsoft.ScVmm": {
+ "availabilitySets": [
+ "2020-06-05-preview"
+ ],
+ "clouds": [
+ "2020-06-05-preview"
+ ],
+ "virtualMachines": [
+ "2020-06-05-preview"
+ ],
+ "virtualMachineTemplates": [
+ "2020-06-05-preview"
+ ],
+ "virtualNetworks": [
+ "2020-06-05-preview"
+ ],
+ "vmmServers": [
+ "2020-06-05-preview"
+ ],
+ "vmmServers/inventoryItems": [
+ "2020-06-05-preview"
+ ]
+ },
+ "Microsoft.Search": {
+ "searchServices": [
+ "2015-02-28",
+ "2015-08-19",
+ "2019-10-01-preview",
+ "2020-03-13",
+ "2020-08-01",
+ "2020-08-01-preview",
+ "2021-04-01-preview"
+ ],
+ "searchServices/privateEndpointConnections": [
+ "2019-10-01-preview",
+ "2020-03-13",
+ "2020-08-01",
+ "2020-08-01-preview",
+ "2021-04-01-preview"
+ ],
+ "searchServices/sharedPrivateLinkResources": [
+ "2020-08-01",
+ "2020-08-01-preview",
+ "2021-04-01-preview"
+ ]
+ },
+ "Microsoft.Security": {
+ "advancedThreatProtectionSettings": [
+ "2017-08-01-preview",
+ "2019-01-01"
+ ],
+ "alertsSuppressionRules": [
+ "2019-01-01-preview"
+ ],
+ "apiCollections": [
+ "2022-11-20-preview"
+ ],
+ "applications": [
+ "2022-07-01-preview"
+ ],
+ "assessmentMetadata": [
+ "2019-01-01-preview",
+ "2020-01-01",
+ "2021-06-01"
+ ],
+ "assessments": [
+ "2019-01-01-preview",
+ "2020-01-01",
+ "2021-06-01"
+ ],
+ "assessments/governanceAssignments": [
+ "2022-01-01-preview"
+ ],
+ "assignments": [
+ "2021-08-01-preview"
+ ],
+ "automations": [
+ "2019-01-01-preview"
+ ],
+ "autoProvisioningSettings": [
+ "2017-08-01-preview"
+ ],
+ "connectors": [
+ "2020-01-01-preview"
+ ],
+ "customAssessmentAutomations": [
+ "2021-07-01-preview"
+ ],
+ "customEntityStoreAssignments": [
+ "2021-07-01-preview"
+ ],
+ "deviceSecurityGroups": [
+ "2017-08-01-preview",
+ "2019-08-01"
+ ],
+ "governanceRules": [
+ "2022-01-01-preview"
+ ],
+ "informationProtectionPolicies": [
+ "2017-08-01-preview"
+ ],
+ "ingestionSettings": [
+ "2021-01-15-preview"
+ ],
+ "iotSecuritySolutions": [
+ "2017-08-01-preview",
+ "2019-08-01"
+ ],
+ "locations/applicationWhitelistings": [
+ "2015-06-01-preview",
+ "2020-01-01"
+ ],
+ "locations/jitNetworkAccessPolicies": [
+ "2015-06-01-preview",
+ "2020-01-01"
+ ],
+ "pricings": [
+ "2017-08-01-preview",
+ "2018-06-01",
+ "2022-03-01"
+ ],
+ "securityConnectors": [
+ "2021-07-01-preview",
+ "2021-12-01-preview",
+ "2022-05-01-preview",
+ "2022-08-01-preview"
+ ],
+ "securityContacts": [
+ "2017-08-01-preview",
+ "2020-01-01-preview"
+ ],
+ "serverVulnerabilityAssessments": [
+ "2020-01-01"
+ ],
+ "settings": [
+ "2017-08-01-preview",
+ "2019-01-01",
+ "2021-06-01",
+ "2021-07-01",
+ "2022-05-01"
+ ],
+ "sqlVulnerabilityAssessments/baselineRules": [
+ "2020-07-01-preview"
+ ],
+ "standards": [
+ "2021-08-01-preview"
+ ],
+ "workspaceSettings": [
+ "2017-08-01-preview"
+ ]
+ },
+ "Microsoft.SecurityAndCompliance": {
+ "privateLinkServicesForEDMUpload": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForEDMUpload/privateEndpointConnections": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForM365ComplianceCenter": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForM365ComplianceCenter/privateEndpointConnections": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForM365SecurityCenter": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForM365SecurityCenter/privateEndpointConnections": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForMIPPolicySync": [
+ "2021-03-08"
+ ],
+ "privateLinkServicesForMIPPolicySync/privateEndpointConnections": [
+ "2021-03-08"
+ ],
+ "privateLinkServicesForO365ManagementActivityAPI": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForO365ManagementActivityAPI/privateEndpointConnections": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForSCCPowershell": [
+ "2021-01-11",
+ "2021-03-08"
+ ],
+ "privateLinkServicesForSCCPowershell/privateEndpointConnections": [
+ "2021-01-11",
+ "2021-03-08"
+ ]
+ },
+ "Microsoft.SecurityDevOps": {
+ "azureDevOpsConnectors": [
+ "2022-09-01-preview"
+ ],
+ "azureDevOpsConnectors/orgs": [
+ "2022-09-01-preview"
+ ],
+ "azureDevOpsConnectors/orgs/projects": [
+ "2022-09-01-preview"
+ ],
+ "azureDevOpsConnectors/orgs/projects/repos": [
+ "2022-09-01-preview"
+ ],
+ "gitHubConnectors": [
+ "2022-09-01-preview"
+ ],
+ "gitHubConnectors/owners": [
+ "2022-09-01-preview"
+ ],
+ "gitHubConnectors/owners/repos": [
+ "2022-09-01-preview"
+ ]
+ },
+ "Microsoft.SecurityInsights": {
+ "alertRules": [
+ "2019-01-01-preview",
+ "2020-01-01",
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "alertRules/actions": [
+ "2019-01-01-preview",
+ "2020-01-01",
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "automationRules": [
+ "2019-01-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "bookmarks": [
+ "2019-01-01-preview",
+ "2020-01-01",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "bookmarks/relations": [
+ "2019-01-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "cases": [
+ "2019-01-01-preview"
+ ],
+ "cases/comments": [
+ "2019-01-01-preview"
+ ],
+ "cases/relations": [
+ "2019-01-01-preview"
+ ],
+ "dataConnectors": [
+ "2019-01-01-preview",
+ "2020-01-01",
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "entityQueries": [
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "fileImports": [
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "incidents": [
+ "2019-01-01-preview",
+ "2020-01-01",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "incidents/comments": [
+ "2019-01-01-preview",
+ "2020-01-01",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "incidents/relations": [
+ "2019-01-01-preview",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "incidents/tasks": [
+ "2022-12-01-preview"
+ ],
+ "metadata": [
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "onboardingStates": [
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "securityMLAnalyticsSettings": [
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "settings": [
+ "2019-01-01-preview",
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "sourcecontrols": [
+ "2021-03-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "threatIntelligence/indicators": [
+ "2019-01-01-preview",
+ "2021-04-01",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "watchlists": [
+ "2019-01-01-preview",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ],
+ "watchlists/watchlistItems": [
+ "2019-01-01-preview",
+ "2021-03-01-preview",
+ "2021-04-01",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2021-10-01-preview",
+ "2022-01-01-preview",
+ "2022-04-01-preview",
+ "2022-05-01-preview",
+ "2022-06-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01",
+ "2022-08-01-preview",
+ "2022-09-01-preview",
+ "2022-10-01-preview",
+ "2022-11-01",
+ "2022-11-01-preview",
+ "2022-12-01-preview"
+ ]
+ },
+ "Microsoft.SerialConsole": {
+ "serialPorts": [
+ "2018-05-01"
+ ]
+ },
+ "Microsoft.ServiceBus": {
+ "namespaces": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/AuthorizationRules": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/disasterRecoveryConfigs": [
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/ipfilterrules": [
+ "2018-01-01-preview"
+ ],
+ "namespaces/messagingplan": [
+ "2014-09-01"
+ ],
+ "namespaces/migrationConfigurations": [
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/networkRuleSets": [
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/privateEndpointConnections": [
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/queues": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/queues/authorizationRules": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/topics": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/topics/authorizationRules": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/topics/subscriptions": [
+ "2014-09-01",
+ "2015-08-01",
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/topics/subscriptions/rules": [
+ "2017-04-01",
+ "2018-01-01-preview",
+ "2021-01-01-preview",
+ "2021-06-01-preview",
+ "2021-11-01",
+ "2022-01-01-preview",
+ "2022-10-01-preview"
+ ],
+ "namespaces/virtualnetworkrules": [
+ "2018-01-01-preview"
+ ]
+ },
+ "Microsoft.ServiceFabric": {
+ "clusters": [
+ "2016-09-01",
+ "2017-07-01-preview",
+ "2018-02-01",
+ "2019-03-01",
+ "2019-03-01-preview",
+ "2019-06-01-preview",
+ "2019-11-01-preview",
+ "2020-03-01",
+ "2020-12-01-preview",
+ "2021-06-01"
+ ],
+ "clusters/applications": [
+ "2017-07-01-preview",
+ "2019-03-01",
+ "2019-03-01-preview",
+ "2019-06-01-preview",
+ "2019-11-01-preview",
+ "2020-03-01",
+ "2020-12-01-preview",
+ "2021-06-01"
+ ],
+ "clusters/applications/services": [
+ "2017-07-01-preview",
+ "2019-03-01",
+ "2019-03-01-preview",
+ "2019-06-01-preview",
+ "2019-11-01-preview",
+ "2020-03-01",
+ "2020-12-01-preview",
+ "2021-06-01"
+ ],
+ "clusters/applicationTypes": [
+ "2017-07-01-preview",
+ "2019-03-01",
+ "2019-03-01-preview",
+ "2019-06-01-preview",
+ "2019-11-01-preview",
+ "2020-03-01",
+ "2020-12-01-preview",
+ "2021-06-01"
+ ],
+ "clusters/applicationTypes/versions": [
+ "2017-07-01-preview",
+ "2019-03-01",
+ "2019-03-01-preview",
+ "2019-06-01-preview",
+ "2019-11-01-preview",
+ "2020-03-01",
+ "2020-12-01-preview",
+ "2021-06-01"
+ ],
+ "managedClusters": [
+ "2020-01-01-preview",
+ "2021-01-01-preview",
+ "2021-05-01",
+ "2021-07-01-preview",
+ "2021-09-01-privatepreview",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-06-01-preview",
+ "2022-08-01-preview"
+ ],
+ "managedclusters/applications": [
+ "2021-01-01-preview",
+ "2021-05-01",
+ "2021-07-01-preview",
+ "2021-09-01-privatepreview",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-06-01-preview",
+ "2022-08-01-preview"
+ ],
+ "managedclusters/applications/services": [
+ "2021-01-01-preview",
+ "2021-05-01",
+ "2021-07-01-preview",
+ "2021-09-01-privatepreview",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-06-01-preview",
+ "2022-08-01-preview"
+ ],
+ "managedclusters/applicationTypes": [
+ "2021-01-01-preview",
+ "2021-05-01",
+ "2021-07-01-preview",
+ "2021-09-01-privatepreview",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-06-01-preview",
+ "2022-08-01-preview"
+ ],
+ "managedclusters/applicationTypes/versions": [
+ "2021-01-01-preview",
+ "2021-05-01",
+ "2021-07-01-preview",
+ "2021-09-01-privatepreview",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-06-01-preview",
+ "2022-08-01-preview"
+ ],
+ "managedClusters/nodeTypes": [
+ "2020-01-01-preview",
+ "2021-01-01-preview",
+ "2021-05-01",
+ "2021-07-01-preview",
+ "2021-09-01-privatepreview",
+ "2021-11-01-preview",
+ "2022-01-01",
+ "2022-02-01-preview",
+ "2022-06-01-preview",
+ "2022-08-01-preview"
+ ]
+ },
+ "Microsoft.ServiceFabricMesh": {
+ "applications": [
+ "2018-07-01-preview",
+ "2018-09-01-preview"
+ ],
+ "gateways": [
+ "2018-09-01-preview"
+ ],
+ "networks": [
+ "2018-07-01-preview",
+ "2018-09-01-preview"
+ ],
+ "secrets": [
+ "2018-09-01-preview"
+ ],
+ "secrets/values": [
+ "2018-09-01-preview"
+ ],
+ "volumes": [
+ "2018-07-01-preview",
+ "2018-09-01-preview"
+ ]
+ },
+ "Microsoft.ServiceLinker": {
+ "dryruns": [
+ "2022-11-01-preview"
+ ],
+ "linkers": [
+ "2021-11-01-preview",
+ "2022-01-01-preview",
+ "2022-05-01",
+ "2022-11-01-preview"
+ ],
+ "locations/connectors": [
+ "2022-11-01-preview"
+ ],
+ "locations/dryruns": [
+ "2022-11-01-preview"
+ ]
+ },
+ "Microsoft.ServiceNetworking": {
+ "trafficControllers": [
+ "2022-10-01-preview"
+ ],
+ "trafficControllers/associations": [
+ "2022-10-01-preview"
+ ],
+ "trafficControllers/frontends": [
+ "2022-10-01-preview"
+ ]
+ },
+ "Microsoft.SignalRService": {
+ "signalR": [
+ "2018-03-01-preview",
+ "2018-10-01",
+ "2020-05-01",
+ "2020-07-01-preview",
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2022-02-01",
+ "2022-08-01-preview"
+ ],
+ "signalR/customCertificates": [
+ "2022-02-01",
+ "2022-08-01-preview"
+ ],
+ "signalR/customDomains": [
+ "2022-02-01",
+ "2022-08-01-preview"
+ ],
+ "signalR/privateEndpointConnections": [
+ "2020-05-01",
+ "2020-07-01-preview",
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2022-02-01",
+ "2022-08-01-preview"
+ ],
+ "signalR/sharedPrivateLinkResources": [
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2022-02-01",
+ "2022-08-01-preview"
+ ],
+ "webPubSub": [
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2022-08-01-preview"
+ ],
+ "webPubSub/customCertificates": [
+ "2022-08-01-preview"
+ ],
+ "webPubSub/customDomains": [
+ "2022-08-01-preview"
+ ],
+ "webPubSub/hubs": [
+ "2021-10-01",
+ "2022-08-01-preview"
+ ],
+ "webPubSub/privateEndpointConnections": [
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2022-08-01-preview"
+ ],
+ "webPubSub/sharedPrivateLinkResources": [
+ "2021-04-01-preview",
+ "2021-06-01-preview",
+ "2021-09-01-preview",
+ "2021-10-01",
+ "2022-08-01-preview"
+ ]
+ },
+ "Microsoft.SoftwarePlan": {
+ "hybridUseBenefits": [
+ "2019-06-01-preview",
+ "2019-12-01"
+ ]
+ },
+ "Microsoft.Solutions": {
+ "applianceDefinitions": [
+ "2016-09-01-preview"
+ ],
+ "appliances": [
+ "2016-09-01-preview"
+ ],
+ "applicationDefinitions": [
+ "2017-09-01",
+ "2017-12-01",
+ "2018-02-01",
+ "2018-03-01",
+ "2018-06-01",
+ "2018-09-01-preview",
+ "2019-07-01",
+ "2020-08-21-preview",
+ "2021-02-01-preview",
+ "2021-07-01"
+ ],
+ "applications": [
+ "2017-09-01",
+ "2017-12-01",
+ "2018-02-01",
+ "2018-03-01",
+ "2018-06-01",
+ "2018-09-01-preview",
+ "2019-07-01",
+ "2020-08-21-preview",
+ "2021-02-01-preview",
+ "2021-07-01"
+ ],
+ "jitRequests": [
+ "2018-03-01",
+ "2018-06-01",
+ "2018-09-01-preview",
+ "2019-07-01",
+ "2020-08-21-preview",
+ "2021-02-01-preview",
+ "2021-07-01"
+ ]
+ },
+ "Microsoft.Sql": {
+ "instancePools": [
+ "2018-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "locations/instanceFailoverGroups": [
+ "2017-10-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "locations/serverTrustGroups": [
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances": [
+ "2015-05-01-preview",
+ "2018-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/administrators": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/advancedThreatProtectionSettings": [
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/azureADOnlyAuthentications": [
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases": [
+ "2017-03-01-preview",
+ "2018-06-01-preview",
+ "2019-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases/advancedThreatProtectionSettings": [
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases/backupLongTermRetentionPolicies": [
+ "2018-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases/backupShortTermRetentionPolicies": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases/schemas/tables/columns/sensitivityLabels": [
+ "2018-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases/securityAlertPolicies": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases/transparentDataEncryption": [
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases/vulnerabilityAssessments": [
+ "2017-10-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/databases/vulnerabilityAssessments/rules/baselines": [
+ "2017-10-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/distributedAvailabilityGroups": [
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/dnsAliases": [
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/dtc": [
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/encryptionProtector": [
+ "2017-10-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/keys": [
+ "2017-10-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/privateEndpointConnections": [
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/securityAlertPolicies": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/serverTrustCertificates": [
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/sqlAgent": [
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "managedInstances/vulnerabilityAssessments": [
+ "2018-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers": [
+ "2014-04-01",
+ "2015-05-01-preview",
+ "2019-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/administrators": [
+ "2014-04-01",
+ "2018-06-01-preview",
+ "2019-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/advancedThreatProtectionSettings": [
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/advisors": [
+ "2014-04-01"
+ ],
+ "servers/auditingPolicies": [
+ "2014-04-01"
+ ],
+ "servers/auditingSettings": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/azureADOnlyAuthentications": [
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/communicationLinks": [
+ "2014-04-01"
+ ],
+ "servers/connectionPolicies": [
+ "2014-04-01",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases": [
+ "2014-04-01",
+ "2017-03-01-preview",
+ "2017-10-01-preview",
+ "2019-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/advancedThreatProtectionSettings": [
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/advisors": [
+ "2014-04-01"
+ ],
+ "servers/databases/auditingPolicies": [
+ "2014-04-01"
+ ],
+ "servers/databases/auditingSettings": [
+ "2015-05-01-preview",
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/backupLongTermRetentionPolicies": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/backupShortTermRetentionPolicies": [
+ "2017-10-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/connectionPolicies": [
+ "2014-04-01"
+ ],
+ "servers/databases/dataMaskingPolicies": [
+ "2014-04-01",
+ "2021-11-01",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/dataMaskingPolicies/rules": [
+ "2014-04-01",
+ "2021-11-01",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/extendedAuditingSettings": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/extensions": [
+ "2014-04-01",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/geoBackupPolicies": [
+ "2014-04-01",
+ "2021-11-01",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/ledgerDigestUploads": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/maintenanceWindows": [
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/schemas/tables/columns/sensitivityLabels": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/securityAlertPolicies": [
+ "2014-04-01",
+ "2018-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/sqlVulnerabilityAssessments/baselines": [
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/sqlVulnerabilityAssessments/baselines/rules": [
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/syncGroups": [
+ "2015-05-01-preview",
+ "2019-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/syncGroups/syncMembers": [
+ "2015-05-01-preview",
+ "2019-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/transparentDataEncryption": [
+ "2014-04-01",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/vulnerabilityAssessments": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/vulnerabilityAssessments/rules/baselines": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/workloadGroups": [
+ "2019-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/databases/workloadGroups/workloadClassifiers": [
+ "2019-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/devOpsAuditingSettings": [
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/disasterRecoveryConfiguration": [
+ "2014-04-01"
+ ],
+ "servers/dnsAliases": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/elasticPools": [
+ "2014-04-01",
+ "2017-10-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/encryptionProtector": [
+ "2015-05-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/extendedAuditingSettings": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/failoverGroups": [
+ "2015-05-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/firewallRules": [
+ "2014-04-01",
+ "2015-05-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/ipv6FirewallRules": [
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/jobAgents": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/jobAgents/credentials": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/jobAgents/jobs": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/jobAgents/jobs/executions": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/jobAgents/jobs/steps": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/jobAgents/targetGroups": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/keys": [
+ "2015-05-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/outboundFirewallRules": [
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/privateEndpointConnections": [
+ "2018-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/securityAlertPolicies": [
+ "2017-03-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/sqlVulnerabilityAssessments": [
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/sqlVulnerabilityAssessments/baselines": [
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/sqlVulnerabilityAssessments/baselines/rules": [
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/syncAgents": [
+ "2015-05-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/virtualNetworkRules": [
+ "2015-05-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ],
+ "servers/vulnerabilityAssessments": [
+ "2018-06-01-preview",
+ "2020-02-02-preview",
+ "2020-08-01-preview",
+ "2020-11-01-preview",
+ "2021-02-01-preview",
+ "2021-05-01-preview",
+ "2021-08-01-preview",
+ "2021-11-01",
+ "2021-11-01-preview",
+ "2022-02-01-preview",
+ "2022-05-01-preview"
+ ]
+ },
+ "Microsoft.SqlVirtualMachine": {
+ "sqlVirtualMachineGroups": [
+ "2017-03-01-preview",
+ "2021-11-01-preview",
+ "2022-02-01",
+ "2022-02-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview"
+ ],
+ "sqlVirtualMachineGroups/availabilityGroupListeners": [
+ "2017-03-01-preview",
+ "2021-11-01-preview",
+ "2022-02-01",
+ "2022-02-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview"
+ ],
+ "sqlVirtualMachines": [
+ "2017-03-01-preview",
+ "2021-11-01-preview",
+ "2022-02-01",
+ "2022-02-01-preview",
+ "2022-07-01-preview",
+ "2022-08-01-preview"
+ ]
+ },
+ "Microsoft.Storage": {
+ "storageAccounts": [
+ "2015-05-01-preview",
+ "2015-06-15",
+ "2016-01-01",
+ "2016-05-01",
+ "2016-12-01",
+ "2017-06-01",
+ "2017-10-01",
+ "2018-02-01",
+ "2018-03-01-preview",
+ "2018-07-01",
+ "2018-11-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/blobServices": [
+ "2018-07-01",
+ "2018-11-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/blobServices/containers": [
+ "2018-02-01",
+ "2018-03-01-preview",
+ "2018-07-01",
+ "2018-11-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/blobServices/containers/immutabilityPolicies": [
+ "2018-02-01",
+ "2018-03-01-preview",
+ "2018-07-01",
+ "2018-11-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/encryptionScopes": [
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/fileServices": [
+ "2019-04-01",
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/fileServices/shares": [
+ "2019-04-01",
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/inventoryPolicies": [
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/localUsers": [
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/managementPolicies": [
+ "2018-03-01-preview",
+ "2018-11-01",
+ "2019-04-01",
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/objectReplicationPolicies": [
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/privateEndpointConnections": [
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/queueServices": [
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/queueServices/queues": [
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/tableServices": [
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ],
+ "storageAccounts/tableServices/tables": [
+ "2019-06-01",
+ "2020-08-01-preview",
+ "2021-01-01",
+ "2021-02-01",
+ "2021-04-01",
+ "2021-06-01",
+ "2021-08-01",
+ "2021-09-01",
+ "2022-05-01",
+ "2022-09-01"
+ ]
+ },
+ "Microsoft.Storage.Admin": {
+ "locations/quotas": [
+ "2019-08-08"
+ ],
+ "locations/settings": [
+ "2019-08-08"
+ ],
+ "storageServices": [
+ "2019-08-08"
+ ]
+ },
+ "Microsoft.StorageCache": {
+ "caches": [
+ "2019-08-01-preview",
+ "2019-11-01",
+ "2020-03-01",
+ "2020-10-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-09-01",
+ "2022-01-01",
+ "2022-05-01"
+ ],
+ "caches/storageTargets": [
+ "2019-08-01-preview",
+ "2019-11-01",
+ "2020-03-01",
+ "2020-10-01",
+ "2021-03-01",
+ "2021-05-01",
+ "2021-09-01",
+ "2022-01-01",
+ "2022-05-01"
+ ]
+ },
+ "Microsoft.StorageMover": {
+ "storageMovers": [
+ "2022-07-01-preview"
+ ],
+ "storageMovers/agents": [
+ "2022-07-01-preview"
+ ],
+ "storageMovers/endpoints": [
+ "2022-07-01-preview"
+ ],
+ "storageMovers/projects": [
+ "2022-07-01-preview"
+ ],
+ "storageMovers/projects/jobDefinitions": [
+ "2022-07-01-preview"
+ ]
+ },
+ "Microsoft.StoragePool": {
+ "diskPools": [
+ "2020-03-15-preview",
+ "2021-04-01-preview",
+ "2021-08-01"
+ ],
+ "diskPools/iscsiTargets": [
+ "2020-03-15-preview",
+ "2021-04-01-preview",
+ "2021-08-01"
+ ]
+ },
+ "Microsoft.StorageSync": {
+ "storageSyncServices": [
+ "2017-06-05-preview",
+ "2018-04-02",
+ "2018-07-01",
+ "2018-10-01",
+ "2019-02-01",
+ "2019-03-01",
+ "2019-06-01",
+ "2019-10-01",
+ "2020-03-01",
+ "2020-09-01",
+ "2022-06-01"
+ ],
+ "storageSyncServices/privateEndpointConnections": [
+ "2020-03-01",
+ "2020-09-01",
+ "2022-06-01"
+ ],
+ "storageSyncServices/registeredServers": [
+ "2017-06-05-preview",
+ "2018-04-02",
+ "2018-07-01",
+ "2018-10-01",
+ "2019-02-01",
+ "2019-03-01",
+ "2019-06-01",
+ "2019-10-01",
+ "2020-03-01",
+ "2020-09-01",
+ "2022-06-01"
+ ],
+ "storageSyncServices/syncGroups": [
+ "2017-06-05-preview",
+ "2018-04-02",
+ "2018-07-01",
+ "2018-10-01",
+ "2019-02-01",
+ "2019-03-01",
+ "2019-06-01",
+ "2019-10-01",
+ "2020-03-01",
+ "2020-09-01",
+ "2022-06-01"
+ ],
+ "storageSyncServices/syncGroups/cloudEndpoints": [
+ "2017-06-05-preview",
+ "2018-04-02",
+ "2018-07-01",
+ "2018-10-01",
+ "2019-02-01",
+ "2019-03-01",
+ "2019-06-01",
+ "2019-10-01",
+ "2020-03-01",
+ "2020-09-01",
+ "2022-06-01"
+ ],
+ "storageSyncServices/syncGroups/serverEndpoints": [
+ "2017-06-05-preview",
+ "2018-04-02",
+ "2018-07-01",
+ "2018-10-01",
+ "2019-02-01",
+ "2019-03-01",
+ "2019-06-01",
+ "2019-10-01",
+ "2020-03-01",
+ "2020-09-01",
+ "2022-06-01"
+ ]
+ },
+ "Microsoft.StorSimple": {
+ "managers": [
+ "2016-10-01",
+ "2017-06-01"
+ ],
+ "managers/accessControlRecords": [
+ "2016-10-01",
+ "2017-06-01"
+ ],
+ "managers/bandwidthSettings": [
+ "2017-06-01"
+ ],
+ "managers/certificates": [
+ "2016-10-01"
+ ],
+ "managers/devices/alertSettings": [
+ "2016-10-01",
+ "2017-06-01"
+ ],
+ "managers/devices/backupPolicies": [
+ "2017-06-01"
+ ],
+ "managers/devices/backupPolicies/schedules": [
+ "2017-06-01"
+ ],
+ "managers/devices/backupScheduleGroups": [
+ "2016-10-01"
+ ],
+ "managers/devices/chapSettings": [
+ "2016-10-01"
+ ],
+ "managers/devices/fileservers": [
+ "2016-10-01"
+ ],
+ "managers/devices/fileservers/shares": [
+ "2016-10-01"
+ ],
+ "managers/devices/iscsiservers": [
+ "2016-10-01"
+ ],
+ "managers/devices/iscsiservers/disks": [
+ "2016-10-01"
+ ],
+ "managers/devices/timeSettings": [
+ "2017-06-01"
+ ],
+ "managers/devices/volumeContainers": [
+ "2017-06-01"
+ ],
+ "managers/devices/volumeContainers/volumes": [
+ "2017-06-01"
+ ],
+ "managers/extendedInformation": [
+ "2016-10-01",
+ "2017-06-01"
+ ],
+ "managers/storageAccountCredentials": [
+ "2016-10-01",
+ "2017-06-01"
+ ],
+ "managers/storageDomains": [
+ "2016-10-01"
+ ]
+ },
+ "Microsoft.StreamAnalytics": {
+ "clusters": [
+ "2020-03-01",
+ "2020-03-01-preview"
+ ],
+ "clusters/privateEndpoints": [
+ "2020-03-01",
+ "2020-03-01-preview"
+ ],
+ "streamingjobs": [
+ "2016-03-01",
+ "2017-04-01-preview",
+ "2020-03-01",
+ "2021-10-01-preview"
+ ],
+ "streamingjobs/functions": [
+ "2016-03-01",
+ "2017-04-01-preview",
+ "2020-03-01",
+ "2021-10-01-preview"
+ ],
+ "streamingjobs/inputs": [
+ "2016-03-01",
+ "2017-04-01-preview",
+ "2020-03-01",
+ "2021-10-01-preview"
+ ],
+ "streamingjobs/outputs": [
+ "2016-03-01",
+ "2017-04-01-preview",
+ "2020-03-01",
+ "2021-10-01-preview"
+ ],
+ "streamingjobs/transformations": [
+ "2016-03-01",
+ "2017-04-01-preview",
+ "2020-03-01",
+ "2021-10-01-preview"
+ ]
+ },
+ "Microsoft.Subscription": {
+ "aliases": [
+ "2019-10-01-preview",
+ "2020-09-01",
+ "2021-10-01"
+ ],
+ "policies": [
+ "2021-10-01"
+ ],
+ "subscriptionDefinitions": [
+ "2017-11-01-preview"
+ ]
+ },
+ "Microsoft.Subscriptions.Admin": {
+ "directoryTenants": [
+ "2015-11-01"
+ ],
+ "locations": [
+ "2015-11-01"
+ ],
+ "offers": [
+ "2015-11-01"
+ ],
+ "offers/offerDelegations": [
+ "2015-11-01"
+ ],
+ "plans": [
+ "2015-11-01"
+ ],
+ "subscriptions": [
+ "2015-11-01"
+ ],
+ "subscriptions/acquiredPlans": [
+ "2015-11-01"
+ ]
+ },
+ "Microsoft.Support": {
+ "supportTickets": [
+ "2019-05-01-preview",
+ "2020-04-01"
+ ],
+ "supportTickets/communications": [
+ "2019-05-01-preview",
+ "2020-04-01"
+ ]
+ },
+ "Microsoft.Synapse": {
+ "privateLinkHubs": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/administrators": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/auditingSettings": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/azureADOnlyAuthentications": [
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/bigDataPools": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/dedicatedSQLminimalTlsSettings": [
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/encryptionProtector": [
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/extendedAuditingSettings": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/firewallRules": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/integrationRuntimes": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/keys": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/kustoPools": [
+ "2021-04-01-preview",
+ "2021-06-01-preview"
+ ],
+ "workspaces/kustoPools/attachedDatabaseConfigurations": [
+ "2021-06-01-preview"
+ ],
+ "workspaces/kustoPools/databases": [
+ "2021-04-01-preview",
+ "2021-06-01-preview"
+ ],
+ "workspaces/kustoPools/databases/dataConnections": [
+ "2021-04-01-preview",
+ "2021-06-01-preview"
+ ],
+ "workspaces/kustoPools/databases/principalAssignments": [
+ "2021-04-01-preview",
+ "2021-06-01-preview"
+ ],
+ "workspaces/kustoPools/principalAssignments": [
+ "2021-04-01-preview",
+ "2021-06-01-preview"
+ ],
+ "workspaces/managedIdentitySqlControlSettings": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/privateEndpointConnections": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/securityAlertPolicies": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlAdministrators": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlDatabases": [
+ "2020-04-01-preview"
+ ],
+ "workspaces/sqlPools": [
+ "2019-06-01-preview",
+ "2020-04-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/auditingSettings": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/dataMaskingPolicies": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/dataMaskingPolicies/rules": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/extendedAuditingSettings": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/geoBackupPolicies": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/maintenancewindows": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/metadataSync": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/schemas/tables/columns/sensitivityLabels": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/securityAlertPolicies": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/transparentDataEncryption": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/vulnerabilityAssessments": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/vulnerabilityAssessments/rules/baselines": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/workloadGroups": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/sqlPools/workloadGroups/workloadClassifiers": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ],
+ "workspaces/trustedServiceByPassConfiguration": [
+ "2021-06-01-preview"
+ ],
+ "workspaces/vulnerabilityAssessments": [
+ "2019-06-01-preview",
+ "2020-12-01",
+ "2021-03-01",
+ "2021-04-01-preview",
+ "2021-05-01",
+ "2021-06-01",
+ "2021-06-01-preview"
+ ]
+ },
+ "Microsoft.Syntex": {
+ "documentProcessors": [
+ "2022-09-15-preview"
+ ]
+ },
+ "Microsoft.TestBase": {
+ "testBaseAccounts": [
+ "2020-12-16-preview",
+ "2022-04-01-preview"
+ ],
+ "testBaseAccounts/customerEvents": [
+ "2020-12-16-preview",
+ "2022-04-01-preview"
+ ],
+ "testBaseAccounts/packages": [
+ "2020-12-16-preview",
+ "2022-04-01-preview"
+ ],
+ "testBaseAccounts/packages/favoriteProcesses": [
+ "2020-12-16-preview",
+ "2022-04-01-preview"
+ ]
+ },
+ "Microsoft.TimeSeriesInsights": {
+ "environments": [
+ "2017-02-28-preview",
+ "2017-11-15",
+ "2018-08-15-preview",
+ "2020-05-15",
+ "2021-03-31-preview",
+ "2021-06-30-preview"
+ ],
+ "environments/accessPolicies": [
+ "2017-02-28-preview",
+ "2017-11-15",
+ "2018-08-15-preview",
+ "2020-05-15",
+ "2021-03-31-preview",
+ "2021-06-30-preview"
+ ],
+ "environments/eventSources": [
+ "2017-02-28-preview",
+ "2017-11-15",
+ "2018-08-15-preview",
+ "2020-05-15",
+ "2021-03-31-preview",
+ "2021-06-30-preview"
+ ],
+ "environments/privateEndpointConnections": [
+ "2021-03-31-preview"
+ ],
+ "environments/referenceDataSets": [
+ "2017-02-28-preview",
+ "2017-11-15",
+ "2018-08-15-preview",
+ "2020-05-15",
+ "2021-03-31-preview",
+ "2021-06-30-preview"
+ ]
+ },
+ "Microsoft.VideoIndexer": {
+ "accounts": [
+ "2021-10-18-preview",
+ "2021-10-27-preview",
+ "2021-11-10-preview",
+ "2022-04-13-preview",
+ "2022-07-20-preview",
+ "2022-08-01"
+ ]
+ },
+ "Microsoft.VirtualMachineImages": {
+ "imageTemplates": [
+ "2018-02-01-preview",
+ "2019-02-01-preview",
+ "2019-05-01-preview",
+ "2020-02-14",
+ "2021-10-01",
+ "2022-02-14"
+ ]
+ },
+ "microsoft.visualstudio": {
+ "account": [
+ "2014-04-01-preview",
+ "2017-11-01-preview"
+ ],
+ "account/extension": [
+ "2014-04-01-preview",
+ "2017-11-01-preview"
+ ],
+ "account/project": [
+ "2014-04-01-preview",
+ "2017-11-01-preview",
+ "2018-08-01-preview"
+ ]
+ },
+ "Microsoft.VMwareCloudSimple": {
+ "dedicatedCloudNodes": [
+ "2019-04-01"
+ ],
+ "dedicatedCloudServices": [
+ "2019-04-01"
+ ],
+ "virtualMachines": [
+ "2019-04-01"
+ ]
+ },
+ "Microsoft.VoiceServices": {
+ "communicationsGateways": [
+ "2022-12-01-preview"
+ ],
+ "communicationsGateways/contacts": [
+ "2022-12-01-preview"
+ ],
+ "communicationsGateways/testLines": [
+ "2022-12-01-preview"
+ ]
+ },
+ "Microsoft.Web": {
+ "certificates": [
+ "2015-08-01",
+ "2016-03-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "connectionGateways": [
+ "2016-06-01"
+ ],
+ "connections": [
+ "2015-08-01-preview",
+ "2016-06-01"
+ ],
+ "containerApps": [
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "csrs": [
+ "2015-08-01"
+ ],
+ "customApis": [
+ "2016-06-01"
+ ],
+ "hostingEnvironments": [
+ "2015-08-01",
+ "2016-09-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "hostingEnvironments/configurations": [
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "hostingEnvironments/multiRolePools": [
+ "2015-08-01",
+ "2016-09-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "hostingEnvironments/privateEndpointConnections": [
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "hostingEnvironments/workerPools": [
+ "2015-08-01",
+ "2016-09-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "kubeEnvironments": [
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "managedHostingEnvironments": [
+ "2015-08-01"
+ ],
+ "publishingCredentials": [
+ "2015-08-01"
+ ],
+ "publishingUsers": [
+ "2015-08-01",
+ "2016-03-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "serverfarms": [
+ "2015-08-01",
+ "2016-09-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "serverfarms/virtualNetworkConnections/gateways": [
+ "2015-08-01",
+ "2016-09-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "serverfarms/virtualNetworkConnections/routes": [
+ "2015-08-01",
+ "2016-09-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/backups": [
+ "2015-08-01",
+ "2016-08-01"
+ ],
+ "sites/basicPublishingCredentialsPolicies": [
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/config": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/deployments": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/domainOwnershipIdentifiers": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/extensions": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/functions": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/functions/keys": [
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/host/{keyType}": [
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/hostNameBindings": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/hybridconnection": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/hybridConnectionNamespaces/relays": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/instances/deployments": [
+ "2015-08-01"
+ ],
+ "sites/instances/extensions": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/migrate": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/networkConfig": [
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/premieraddons": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/privateAccess": [
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/privateEndpointConnections": [
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/publicCertificates": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/siteextensions": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/backups": [
+ "2015-08-01",
+ "2016-08-01"
+ ],
+ "sites/slots/basicPublishingCredentialsPolicies": [
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/config": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/deployments": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/domainOwnershipIdentifiers": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/extensions": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/functions": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/functions/keys": [
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/host/{keyType}": [
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/hostNameBindings": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/hybridconnection": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/hybridConnectionNamespaces/relays": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/instances/deployments": [
+ "2015-08-01"
+ ],
+ "sites/slots/instances/extensions": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/networkConfig": [
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/premieraddons": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/privateAccess": [
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/privateEndpointConnections": [
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/publicCertificates": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/siteextensions": [
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/snapshots": [
+ "2015-08-01"
+ ],
+ "sites/slots/sourcecontrols": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/virtualNetworkConnections": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/slots/virtualNetworkConnections/gateways": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/snapshots": [
+ "2015-08-01"
+ ],
+ "sites/sourcecontrols": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/virtualNetworkConnections": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sites/virtualNetworkConnections/gateways": [
+ "2015-08-01",
+ "2016-08-01",
+ "2018-02-01",
+ "2018-11-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "sourcecontrols": [
+ "2015-08-01",
+ "2016-03-01",
+ "2018-02-01",
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "staticSites": [
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "staticSites/builds/config": [
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "staticSites/builds/linkedBackends": [
+ "2022-03-01"
+ ],
+ "staticSites/builds/userProvidedFunctionApps": [
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "staticSites/config": [
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "staticSites/customDomains": [
+ "2019-08-01",
+ "2020-06-01",
+ "2020-09-01",
+ "2020-10-01",
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "staticSites/linkedBackends": [
+ "2022-03-01"
+ ],
+ "staticSites/privateEndpointConnections": [
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ],
+ "staticSites/userProvidedFunctionApps": [
+ "2020-12-01",
+ "2021-01-01",
+ "2021-01-15",
+ "2021-02-01",
+ "2021-03-01",
+ "2022-03-01"
+ ]
+ },
+ "Microsoft.WindowsESU": {
+ "multipleActivationKeys": [
+ "2019-09-16-preview"
+ ]
+ },
+ "Microsoft.WindowsIoT": {
+ "deviceServices": [
+ "2018-02-16-preview",
+ "2019-06-01"
+ ]
+ },
+ "Microsoft.WorkloadMonitor": {
+ "notificationSettings": [
+ "2018-08-31-preview"
+ ]
+ },
+ "Microsoft.Workloads": {
+ "monitors": [
+ "2021-12-01-preview"
+ ],
+ "monitors/providerInstances": [
+ "2021-12-01-preview"
+ ],
+ "phpWorkloads": [
+ "2021-12-01-preview"
+ ],
+ "phpWorkloads/wordpressInstances": [
+ "2021-12-01-preview"
+ ],
+ "sapVirtualInstances": [
+ "2021-12-01-preview"
+ ],
+ "sapVirtualInstances/applicationInstances": [
+ "2021-12-01-preview"
+ ],
+ "sapVirtualInstances/centralInstances": [
+ "2021-12-01-preview"
+ ],
+ "sapVirtualInstances/databaseInstances": [
+ "2021-12-01-preview"
+ ]
+ }
}
From e56390ec7d6ccfbea8324752ee07cfc1178d974f Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Thu, 29 Dec 2022 15:57:12 +1100
Subject: [PATCH 17/18] Updated readme's with more descriptions
---
modules/Microsoft.DevTestLab/labs/artifactSources/readme.md | 2 ++
.../Microsoft.DevTestLab/labs/notificationChannels/readme.md | 2 ++
modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md | 2 ++
modules/Microsoft.DevTestLab/labs/readme.md | 2 ++
modules/Microsoft.DevTestLab/labs/schedules/readme.md | 2 ++
modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md | 2 ++
6 files changed, 12 insertions(+)
diff --git a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
index 7758f73682..f62129f177 100644
--- a/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/artifactSources/readme.md
@@ -2,6 +2,8 @@
This module deploys DevTestLab Labs ArtifactSources.
+An artifact source allows you to create custom artifacts for the VMs in the lab, or use Azure Resource Manager templates to create a custom test environment. You must add a private Git repository for the artifacts or Resource Manager templates that your team creates. The repository can be hosted on GitHub or on Azure DevOps Services.
+
## Navigation
- [Resource Types](#Resource-Types)
diff --git a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
index 23b0b96230..b49e021521 100644
--- a/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/notificationChannels/readme.md
@@ -2,6 +2,8 @@
This module deploys DevTestLab Labs NotificationChannels.
+Notification channels are used by the schedule resource type in order to send notifications or events to email addresses and/or webhooks.
+
## Navigation
- [Resource Types](#Resource-Types)
diff --git a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
index ee01a82e80..3da5e06dca 100644
--- a/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/policySets/policies/readme.md
@@ -2,6 +2,8 @@
This module deploys DevTestLab Labs PolicySets Policies.
+DevTest lab policies are used to modify the lab settings like only allowing certain VM Size SKUs, marketplace image types, number of VMs allowed per user and other settings.
+
## Navigation
- [Resource Types](#Resource-Types)
diff --git a/modules/Microsoft.DevTestLab/labs/readme.md b/modules/Microsoft.DevTestLab/labs/readme.md
index 7ede1ca981..2ecf1864df 100644
--- a/modules/Microsoft.DevTestLab/labs/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/readme.md
@@ -2,6 +2,8 @@
This module deploys DevTestLab Labs.
+Azure DevTest Labs is a service for easily creating, using, and managing infrastructure-as-a-service (IaaS) virtual machines (VMs) and platform-as-a-service (PaaS) environments in labs. Labs offer preconfigured bases and artifacts for creating VMs, and Azure Resource Manager (ARM) templates for creating environments like Azure Web Apps or SharePoint farms.
+
## Navigation
- [Resource Types](#Resource-Types)
diff --git a/modules/Microsoft.DevTestLab/labs/schedules/readme.md b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
index a0a3554acf..25ef2ce104 100644
--- a/modules/Microsoft.DevTestLab/labs/schedules/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/schedules/readme.md
@@ -2,6 +2,8 @@
This module deploys DevTestLab Labs Schedules.
+Lab schedules are used to modify the settings for auto-shutdown, auto-start for lab virtual machines.
+
## Navigation
- [Resource Types](#Resource-Types)
diff --git a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
index afbb0eca99..238c59389c 100644
--- a/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/virtualNetworks/readme.md
@@ -2,6 +2,8 @@
This module deploys DevTestLab Labs VirtualNetworks.
+Lab virtual machines must be deployed into a virtual network. This resource type allows configuring the virtual network and subnet settings used for the lab virtual machines.
+
## Navigation
- [Resource Types](#Resource-Types)
From cd389c5efdc89211d5f6dbcbe473da42b5b780b2 Mon Sep 17 00:00:00 2001
From: Ahmad Abdalla <28486158+ahmadabdalla@users.noreply.github.com>
Date: Fri, 30 Dec 2022 09:37:58 +1100
Subject: [PATCH 18/18] updated based on feedback
---
.../labs/.test/common/dependencies.bicep | 6 ++++--
.../labs/.test/common/deploy.test.bicep | 2 +-
.../labs/.test/min/deploy.test.bicep | 2 +-
modules/Microsoft.DevTestLab/labs/readme.md | 16 ++++++++--------
4 files changed, 14 insertions(+), 12 deletions(-)
diff --git a/modules/Microsoft.DevTestLab/labs/.test/common/dependencies.bicep b/modules/Microsoft.DevTestLab/labs/.test/common/dependencies.bicep
index d7707525d8..ba4e69d9e2 100644
--- a/modules/Microsoft.DevTestLab/labs/.test/common/dependencies.bicep
+++ b/modules/Microsoft.DevTestLab/labs/.test/common/dependencies.bicep
@@ -7,6 +7,8 @@ param managedIdentityName string
@description('Required. The name of the Virtual Network to create.')
param virtualNetworkName string
+var addressPrefix = '10.0.0.0/16'
+
resource managedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2018-11-30' = {
name: managedIdentityName
location: location
@@ -18,14 +20,14 @@ resource virtualNetwork 'Microsoft.Network/virtualNetworks@2022-01-01' = {
properties: {
addressSpace: {
addressPrefixes: [
- '10.0.0.0/24'
+ addressPrefix
]
}
subnets: [
{
name: 'defaultSubnet'
properties: {
- addressPrefix: '10.0.0.0/24'
+ addressPrefix: addressPrefix
}
}
]
diff --git a/modules/Microsoft.DevTestLab/labs/.test/common/deploy.test.bicep b/modules/Microsoft.DevTestLab/labs/.test/common/deploy.test.bicep
index 53d2530243..7cd69e775f 100644
--- a/modules/Microsoft.DevTestLab/labs/.test/common/deploy.test.bicep
+++ b/modules/Microsoft.DevTestLab/labs/.test/common/deploy.test.bicep
@@ -11,7 +11,7 @@ param resourceGroupName string = 'ms.devtestlab.labs-${serviceShort}-rg'
param location string = deployment().location
@description('Optional. A short identifier for the kind of deployment. Should be kept short to not run into resource-name length-constraints.')
-param serviceShort string = 'dtlcom'
+param serviceShort string = 'dtllcom'
@description('Optional. Enable telemetry via a Globally Unique Identifier (GUID).')
param enableDefaultTelemetry bool = true
diff --git a/modules/Microsoft.DevTestLab/labs/.test/min/deploy.test.bicep b/modules/Microsoft.DevTestLab/labs/.test/min/deploy.test.bicep
index 4c9147dfb6..d5c0b65cdd 100644
--- a/modules/Microsoft.DevTestLab/labs/.test/min/deploy.test.bicep
+++ b/modules/Microsoft.DevTestLab/labs/.test/min/deploy.test.bicep
@@ -11,7 +11,7 @@ param resourceGroupName string = 'ms.devtestlab.labs-${serviceShort}-rg'
param location string = deployment().location
@description('Optional. A short identifier for the kind of deployment. Should be kept short to not run into resource-name length-constraints.')
-param serviceShort string = 'dtlmin'
+param serviceShort string = 'dtllmin'
@description('Optional. Enable telemetry via a Globally Unique Identifier (GUID).')
param enableDefaultTelemetry bool = true
diff --git a/modules/Microsoft.DevTestLab/labs/readme.md b/modules/Microsoft.DevTestLab/labs/readme.md
index 2ecf1864df..1904eaa9aa 100644
--- a/modules/Microsoft.DevTestLab/labs/readme.md
+++ b/modules/Microsoft.DevTestLab/labs/readme.md
@@ -226,10 +226,10 @@ The following module usage examples are retrieved from the content of the files
```bicep
module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
- name: '${uniqueString(deployment().name)}-test-dtlcom'
+ name: '${uniqueString(deployment().name)}-test-dtllcom'
params: {
// Required parameters
- name: '<>dtlcom001'
+ name: '<>dtllcom001'
// Non-required parameters
announcement: {
enabled: 'Enabled'
@@ -387,7 +387,7 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
markdown: 'DevTest Lab support text.
New line. It also supports Markdown'
}
tags: {
- labName: '<>dtlcom001'
+ labName: '<>dtllcom001'
resourceType: 'DevTest Lab'
}
userAssignedIdentities: {
@@ -445,7 +445,7 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
"parameters": {
// Required parameters
"name": {
- "value": "<>dtlcom001"
+ "value": "<>dtllcom001"
},
// Non-required parameters
"announcement": {
@@ -635,7 +635,7 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
},
"tags": {
"value": {
- "labName": "<>dtlcom001",
+ "labName": "<>dtllcom001",
"resourceType": "DevTest Lab"
}
},
@@ -695,10 +695,10 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
```bicep
module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
- name: '${uniqueString(deployment().name)}-test-dtlmin'
+ name: '${uniqueString(deployment().name)}-test-dtllmin'
params: {
// Required parameters
- name: '<>dtlmin001'
+ name: '<>dtllmin001'
// Non-required parameters
enableDefaultTelemetry: ''
}
@@ -719,7 +719,7 @@ module labs './Microsoft.DevTestLab/labs/deploy.bicep' = {
"parameters": {
// Required parameters
"name": {
- "value": "<>dtlmin001"
+ "value": "<>dtllmin001"
},
// Non-required parameters
"enableDefaultTelemetry": {