From de16689fb876b09687229cf494c71ea9a59b99a4 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Sun, 20 Nov 2022 14:27:07 +0100 Subject: [PATCH 01/40] Added IP to generate API specs file in ADO --- .../platformPipelines/platform.apiSpecs.yml | 59 +++++++++++++++++++ .../tools/platform/Set-ApiSpecsTable.ps1 | 32 ++++++++++ 2 files changed, 91 insertions(+) create mode 100644 .azuredevops/platformPipelines/platform.apiSpecs.yml create mode 100644 utilities/tools/platform/Set-ApiSpecsTable.ps1 diff --git a/.azuredevops/platformPipelines/platform.apiSpecs.yml b/.azuredevops/platformPipelines/platform.apiSpecs.yml new file mode 100644 index 0000000000..408569381d --- /dev/null +++ b/.azuredevops/platformPipelines/platform.apiSpecs.yml @@ -0,0 +1,59 @@ +name: '.Platform - Update API Specs file' + +pr: none + +schedules: +- cron: "0 12 * * 0" + displayName: Weekly Sunday Update + branches: + include: + - main + +variables: + - template: '../../settings.yml' + - name: pipelinePrincipalGitUserName + value: 'CARMLPipelinePrincipal' + - name: pipelinePrincipalGitUserEmail + value: 'CARML@noreply.github.com' + +jobs: + - job: Update_API_Specs_file + pool: + ${{ if ne(variables.vmImage, '') }}: + vmImage: ${{ variables.vmImage }} + ${{ if ne(variables.poolName, '') }}: + name: ${{ variables.poolName }} + steps: + - checkout: self + persistCredentials: true + + - task: PowerShell@2 + displayName: 'Update file' + inputs: + targetType: inline + pwsh: true + script: | + # Load used functions + . (Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'tools' 'platform' 'Set-ApiSpecsTable.ps1') + + $functionInput = @{ + $SpecsFilePath = Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'src' 'apiSpecsList.json' + } + + Write-Verbose "Invoke task with" -Verbose + Write-Verbose ($functionInput | ConvertTo-Json | Out-String) -Verbose + + Set-ApiSpecsTable @functionInput -Verbose + + - task: PowerShell@2 + displayName: 'Push changes' + inputs: + targetType: inline + pwsh: true + script: | + git config --global user.email '$(pipelinePrincipalGitUserEmail)' + git config --global user.name '$(pipelinePrincipalGitUserName)' + Write-Verbose '$(Build.SourceBranch)' -Verbose + git add . + git commit -m "Push updated API Specs file" + git push $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) diff --git a/utilities/tools/platform/Set-ApiSpecsTable.ps1 b/utilities/tools/platform/Set-ApiSpecsTable.ps1 new file mode 100644 index 0000000000..05a9b4d829 --- /dev/null +++ b/utilities/tools/platform/Set-ApiSpecsTable.ps1 @@ -0,0 +1,32 @@ +function Set-ApiSpecsTable { + + [CmdletBinding(SupportsShouldProcess = $true)] + param ( + [Parameter(Mandatory = $false)] + [string] $SpecsFilePath = (Join-Path (Split-Path (Split-Path $PSScriptRoot -Parent)) 'src' 'apiSpecsList.json') + ) + + if (-not (Get-Module 'AzureAPICrawler' -ListAvailable)) { + if ($PSCmdlet.ShouldProcess("Module 'AzureAPICrawler with version [0.1.2]'", 'Install')) { + $null = Install-Module 'AzureAPICrawler' -Scope 'CurrentUser' -Repository 'PSGallery' -RequiredVersion '0.1.2' -Force + } + } + + $null = Import-Module 'AzureAPICrawler' + + + if (-not (Test-Path $SpecsFilePath)) { + if ($PSCmdlet.ShouldProcess('API Specs file [apiSpecsList.json]', 'Create')) { + Write-Verbose 'Generating new API Specs file' + $null = New-Item -Path $SpecsFilePath -Force + } + } + + $res = Get-AzureApiSpecsVersionList -IncludePreview -Verbose + + $fileContent = $res | ConvertTo-Json + + if ($PSCmdlet.ShouldProcess('API Specs file [apiSpecsList.json]', 'Update')) { + $null = Set-Item -Path $SpecsFilePath -Value $fileContent -Force + } +} From cf8a7adbe1efafe41c24000c2333c60898cd71e5 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Sun, 20 Nov 2022 14:30:32 +0100 Subject: [PATCH 02/40] Fixed var --- .azuredevops/platformPipelines/platform.apiSpecs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azuredevops/platformPipelines/platform.apiSpecs.yml b/.azuredevops/platformPipelines/platform.apiSpecs.yml index 408569381d..914714a4c6 100644 --- a/.azuredevops/platformPipelines/platform.apiSpecs.yml +++ b/.azuredevops/platformPipelines/platform.apiSpecs.yml @@ -37,7 +37,7 @@ jobs: . (Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'tools' 'platform' 'Set-ApiSpecsTable.ps1') $functionInput = @{ - $SpecsFilePath = Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'src' 'apiSpecsList.json' + SpecsFilePath = Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'src' 'apiSpecsList.json' } Write-Verbose "Invoke task with" -Verbose From 2a4614debb75c357d57f8eb0d0eedddc3f7a4f65 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Sun, 20 Nov 2022 14:34:12 +0100 Subject: [PATCH 03/40] Swiched utility --- utilities/tools/platform/Set-ApiSpecsTable.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/tools/platform/Set-ApiSpecsTable.ps1 b/utilities/tools/platform/Set-ApiSpecsTable.ps1 index 05a9b4d829..d653d7216a 100644 --- a/utilities/tools/platform/Set-ApiSpecsTable.ps1 +++ b/utilities/tools/platform/Set-ApiSpecsTable.ps1 @@ -27,6 +27,6 @@ $fileContent = $res | ConvertTo-Json if ($PSCmdlet.ShouldProcess('API Specs file [apiSpecsList.json]', 'Update')) { - $null = Set-Item -Path $SpecsFilePath -Value $fileContent -Force + $null = Set-Content -Path $SpecsFilePath -Value $fileContent -Force } } From 91ab133549e112b41c5f421c42a5a9e5c7e73f5b Mon Sep 17 00:00:00 2001 From: CARMLPipelinePrincipal Date: Sun, 20 Nov 2022 13:36:42 +0000 Subject: [PATCH 04/40] Push updated API Specs file --- utilities/src/apiSpecsList.json | 14936 ++++++++++++++++++++++++++++++ 1 file changed, 14936 insertions(+) create mode 100644 utilities/src/apiSpecsList.json diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json new file mode 100644 index 0000000000..69ccd03e93 --- /dev/null +++ b/utilities/src/apiSpecsList.json @@ -0,0 +1,14936 @@ +{ + "Microsoft.AAD": { + "domainServices": [ + "2017-01-01", + "2017-06-01", + "2020-01-01", + "2021-03-01", + "2021-05-01", + "2022-09-01" + ], + "domainServices/ouContainer": [ + "2017-06-01", + "2020-01-01", + "2021-03-01", + "2021-05-01", + "2022-09-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" + ] + }, + "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" + ], + "connectedEnvironments/certificates": [ + "2022-06-01-preview" + ], + "connectedEnvironments/daprComponents": [ + "2022-06-01-preview" + ], + "connectedEnvironments/storages": [ + "2022-06-01-preview" + ], + "containerApps": [ + "2022-01-01-preview", + "2022-03-01", + "2022-06-01-preview" + ], + "containerApps/authConfigs": [ + "2022-01-01-preview", + "2022-03-01", + "2022-06-01-preview" + ], + "containerApps/sourcecontrols": [ + "2022-01-01-preview", + "2022-03-01", + "2022-06-01-preview" + ], + "managedEnvironments": [ + "2022-01-01-preview", + "2022-03-01", + "2022-06-01-preview" + ], + "managedEnvironments/certificates": [ + "2022-01-01-preview", + "2022-03-01", + "2022-06-01-preview" + ], + "managedEnvironments/daprComponents": [ + "2022-01-01-preview", + "2022-03-01", + "2022-06-01-preview" + ], + "managedEnvironments/storages": [ + "2022-01-01-preview", + "2022-03-01", + "2022-06-01-preview" + ] + }, + "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" + ], + "Spring/apiPortals": [ + "2022-01-01-preview", + "2022-03-01-preview", + "2022-05-01-preview", + "2022-09-01-preview", + "2022-11-01-preview" + ], + "Spring/apiPortals/domains": [ + "2022-01-01-preview", + "2022-03-01-preview", + "2022-05-01-preview", + "2022-09-01-preview", + "2022-11-01-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "Spring/gateways/domains": [ + "2022-01-01-preview", + "2022-03-01-preview", + "2022-05-01-preview", + "2022-09-01-preview", + "2022-11-01-preview" + ], + "Spring/gateways/routeConfigs": [ + "2022-01-01-preview", + "2022-03-01-preview", + "2022-05-01-preview", + "2022-09-01-preview", + "2022-11-01-preview" + ], + "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" + ], + "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" + ], + "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" + ] + }, + "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" + ], + "dataControllers/activeDirectoryConnectors": [ + "2022-03-01-preview" + ], + "postgresInstances": [ + "2021-06-01-preview", + "2021-07-01-preview", + "2022-03-01-preview" + ], + "sqlManagedInstances": [ + "2021-06-01-preview", + "2021-07-01-preview", + "2021-08-01", + "2021-11-01", + "2022-03-01-preview" + ], + "sqlServerInstances": [ + "2021-06-01-preview", + "2021-07-01-preview", + "2021-08-01", + "2021-11-01", + "2022-03-01-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" + ], + "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" + ], + "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" + ], + "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" + ], + "accounts/commitmentPlans": [ + "2021-10-01", + "2022-03-01", + "2022-10-01" + ], + "accounts/deployments": [ + "2021-10-01", + "2022-03-01", + "2022-10-01" + ], + "accounts/privateEndpointConnections": [ + "2017-04-18", + "2021-04-30", + "2021-10-01", + "2022-03-01", + "2022-10-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" + ], + "cloudServices/updateDomains": [ + "2020-10-01-preview", + "2021-03-01", + "2022-04-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" + ], + "datastores": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "hosts": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "resourcePools": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "vcenters": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "vcenters/inventoryItems": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "virtualMachines": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "virtualMachines/extensions": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "virtualMachines/guestAgents": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "virtualMachines/hybridIdentityMetadata": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "virtualMachineTemplates": [ + "2020-10-01-preview", + "2022-01-10-preview" + ], + "virtualNetworks": [ + "2020-10-01-preview", + "2022-01-10-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" + ] + }, + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ] + }, + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ] + }, + "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" + ], + "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" + ], + "dataBoxEdgeDevices/diagnosticProactiveLogCollectionSettings": [ + "2021-02-01", + "2021-06-01", + "2021-06-01-preview", + "2022-03-01", + "2022-04-01-preview" + ], + "dataBoxEdgeDevices/diagnosticRemoteSupportSettings": [ + "2021-02-01", + "2021-06-01", + "2021-06-01-preview", + "2022-03-01", + "2022-04-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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ] + }, + "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" + ], + "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" + ], + "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" + ], + "backupVaults/backupResourceGuardProxies": [ + "2022-09-01-preview", + "2022-10-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" + ] + }, + "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" + ], + "flexibleServers/administrators": [ + "2022-03-08-preview" + ], + "flexibleServers/configurations": [ + "2021-06-01", + "2021-06-01-preview", + "2021-06-15-privatepreview", + "2022-01-20-preview", + "2022-03-08-preview" + ], + "flexibleServers/databases": [ + "2020-11-05-preview", + "2021-06-01", + "2021-06-01-preview", + "2022-01-20-preview", + "2022-03-08-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "hostPools/privateEndpointConnections": [ + "2021-04-01-preview", + "2021-09-03-preview", + "2022-02-10-preview", + "2022-04-01-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" + ], + "scalingPlans/pooledSchedules": [ + "2022-04-01-preview", + "2022-09-09" + ], + "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" + ], + "workspaces/privateEndpointConnections": [ + "2021-04-01-preview", + "2021-09-03-preview", + "2022-02-10-preview", + "2022-04-01-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" + ], + "accounts/instances": [ + "2020-03-01-preview", + "2022-04-01-preview", + "2022-10-01" + ], + "accounts/privateEndpointConnectionProxies": [ + "2020-03-01-preview", + "2022-04-01-preview", + "2022-10-01" + ], + "accounts/privateEndpointConnections": [ + "2020-03-01-preview", + "2022-04-01-preview", + "2022-10-01" + ] + }, + "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" + ], + "digitalTwinsInstances/endpoints": [ + "2020-03-01-preview", + "2020-10-31", + "2020-12-01", + "2021-06-30-preview", + "2022-05-31" + ], + "digitalTwinsInstances/privateEndpointConnections": [ + "2020-12-01", + "2021-06-30-preview", + "2022-05-31" + ], + "digitalTwinsInstances/timeSeriesDatabaseConnections": [ + "2021-06-30-preview", + "2022-05-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" + ], + "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" + ], + "workspaces": [ + "2021-06-01-preview", + "2021-11-01", + "2022-01-31-preview", + "2022-05-15", + "2022-06-01" + ], + "workspaces/dicomservices": [ + "2021-06-01-preview", + "2021-11-01", + "2022-01-31-preview", + "2022-05-15", + "2022-06-01" + ], + "workspaces/fhirservices": [ + "2021-06-01-preview", + "2021-11-01", + "2022-01-31-preview", + "2022-05-15", + "2022-06-01" + ], + "workspaces/iotconnectors": [ + "2021-06-01-preview", + "2021-11-01", + "2022-01-31-preview", + "2022-05-15", + "2022-06-01" + ], + "workspaces/iotconnectors/fhirdestinations": [ + "2021-06-01-preview", + "2021-11-01", + "2022-01-31-preview", + "2022-05-15", + "2022-06-01" + ], + "workspaces/privateEndpointConnections": [ + "2021-11-01", + "2022-01-31-preview", + "2022-05-15", + "2022-06-01" + ] + }, + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "clusters/databases/scripts": [ + "2021-01-01", + "2021-08-27", + "2022-02-01", + "2022-07-07" + ], + "clusters/managedPrivateEndpoints": [ + "2021-08-27", + "2022-02-01", + "2022-07-07" + ], + "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" + ], + "clusters/privateEndpointConnections": [ + "2021-08-27", + "2022-02-01", + "2022-07-07" + ] + }, + "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" + ], + "mobileNetworks/dataNetworks": [ + "2022-03-01-preview", + "2022-04-01-preview" + ], + "mobileNetworks/services": [ + "2022-03-01-preview", + "2022-04-01-preview" + ], + "mobileNetworks/simPolicies": [ + "2022-03-01-preview", + "2022-04-01-preview" + ], + "mobileNetworks/sites": [ + "2022-03-01-preview", + "2022-04-01-preview" + ], + "mobileNetworks/slices": [ + "2022-03-01-preview", + "2022-04-01-preview" + ], + "packetCoreControlPlanes": [ + "2022-03-01-preview", + "2022-04-01-preview" + ], + "packetCoreControlPlanes/packetCoreDataPlanes": [ + "2022-03-01-preview", + "2022-04-01-preview" + ], + "packetCoreControlPlanes/packetCoreDataPlanes/attachedDataNetworks": [ + "2022-03-01-preview", + "2022-04-01-preview" + ], + "simGroups": [ + "2022-04-01-preview" + ], + "simGroups/sims": [ + "2022-04-01-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ] + }, + "Microsoft.RedHatOpenShift": { + "openShiftClusters": [ + "2020-04-30", + "2021-09-01-preview", + "2022-04-01" + ] + }, + "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-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-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-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-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" + ], + "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-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" + ], + "fileImports": [ + "2022-08-01-preview", + "2022-09-01-preview", + "2022-10-01-preview", + "2022-11-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-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-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-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" + ], + "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-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-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" + ], + "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" + ], + "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-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-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-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" + ], + "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/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" + ], + "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/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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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.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" + ], + "sqlVirtualMachineGroups/availabilityGroupListeners": [ + "2017-03-01-preview", + "2021-11-01-preview", + "2022-02-01", + "2022-02-01-preview", + "2022-07-01-preview" + ], + "sqlVirtualMachines": [ + "2017-03-01-preview", + "2021-11-01-preview", + "2022-02-01", + "2022-02-01-preview", + "2022-07-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.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 1c8cb17ea2cc01b5cf108df062a3fc5f859a6b66 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Sun, 20 Nov 2022 14:38:20 +0100 Subject: [PATCH 05/40] Update to latest --- .azuredevops/platformPipelines/platform.apiSpecs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azuredevops/platformPipelines/platform.apiSpecs.yml b/.azuredevops/platformPipelines/platform.apiSpecs.yml index 914714a4c6..d35620fef3 100644 --- a/.azuredevops/platformPipelines/platform.apiSpecs.yml +++ b/.azuredevops/platformPipelines/platform.apiSpecs.yml @@ -55,5 +55,7 @@ jobs: git config --global user.name '$(pipelinePrincipalGitUserName)' Write-Verbose '$(Build.SourceBranch)' -Verbose git add . + git status git commit -m "Push updated API Specs file" + git pull $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) git push $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) From 6b5a6c13172d004501d26b8be323595a0843cf9a Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Sun, 20 Nov 2022 14:48:27 +0100 Subject: [PATCH 06/40] Added GH wofklow --- .github/workflows/platform.apiSpecs.yml | 46 +++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/platform.apiSpecs.yml diff --git a/.github/workflows/platform.apiSpecs.yml b/.github/workflows/platform.apiSpecs.yml new file mode 100644 index 0000000000..a6d35d1ac5 --- /dev/null +++ b/.github/workflows/platform.apiSpecs.yml @@ -0,0 +1,46 @@ +name: '.Platform: Update API Specs file' + +on: + workflow_dispatch: + schedule: + - cron: '0 12 * * 0' # Weekly Sunday Update + +env: + pipelinePrincipalGitUserName: 'CARMLPipelinePrincipal' + pipelinePrincipalGitUserEmail: 'CARML@noreply.github.com' + +jobs: + job_update_api_specs_file: + runs-on: ubuntu-20.04 + name: 'Update file' + steps: + - name: 'Checkout' + uses: actions/checkout@v3 + with: + fetch-depth: 0 + token: '${{ secrets.PLATFORM_REPO_UPDATE_PAT }}' # Sets general GIT credentials up + - name: 'Update file' + shell: pwsh + run: | + # Load used functions + . (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'tools' 'platform' 'Set-ApiSpecsTable.ps1') + + $functionInput = @{ + SpecsFilePath = Join-Path $env:GITHUB_WORKSPACE 'utilities' 'src' 'apiSpecsList.json' + } + + Write-Verbose "Invoke task with" -Verbose + Write-Verbose ($functionInput | ConvertTo-Json | Out-String) -Verbose + + Set-ApiSpecsTable @functionInput -Verbose + + - name: 'Push changes' + shell: pwsh + run: | + git config --global user.email '${{ env.pipelinePrincipalGitUserEmail }}' + git config --global user.name '${{ env.pipelinePrincipalGitUserName }}' + + git pull + git add . + git commit -m 'Push updated API Specs file' + git push From 196010c9389acf5f2a32342e62fa98c702816ff9 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Sun, 20 Nov 2022 14:51:06 +0100 Subject: [PATCH 07/40] Added docs --- .../platformPipelines/platform.apiSpecs.yml | 6 +++--- .github/workflows/platform.apiSpecs.yml | 4 ++-- ...t-ApiSpecsTable.ps1 => Set-ApiSpecsFile.ps1} | 17 ++++++++++++++++- 3 files changed, 21 insertions(+), 6 deletions(-) rename utilities/tools/platform/{Set-ApiSpecsTable.ps1 => Set-ApiSpecsFile.ps1} (64%) diff --git a/.azuredevops/platformPipelines/platform.apiSpecs.yml b/.azuredevops/platformPipelines/platform.apiSpecs.yml index d35620fef3..82a7a4d75b 100644 --- a/.azuredevops/platformPipelines/platform.apiSpecs.yml +++ b/.azuredevops/platformPipelines/platform.apiSpecs.yml @@ -34,7 +34,7 @@ jobs: pwsh: true script: | # Load used functions - . (Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'tools' 'platform' 'Set-ApiSpecsTable.ps1') + . (Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'tools' 'platform' 'Set-ApiSpecsFile.ps1') $functionInput = @{ SpecsFilePath = Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'src' 'apiSpecsList.json' @@ -43,7 +43,7 @@ jobs: Write-Verbose "Invoke task with" -Verbose Write-Verbose ($functionInput | ConvertTo-Json | Out-String) -Verbose - Set-ApiSpecsTable @functionInput -Verbose + Set-ApiSpecsFile @functionInput -Verbose - task: PowerShell@2 displayName: 'Push changes' @@ -56,6 +56,6 @@ jobs: Write-Verbose '$(Build.SourceBranch)' -Verbose git add . git status - git commit -m "Push updated API Specs file" + git commit -m 'Push updated API Specs file' git pull $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) git push $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) diff --git a/.github/workflows/platform.apiSpecs.yml b/.github/workflows/platform.apiSpecs.yml index a6d35d1ac5..bc4c44e1d2 100644 --- a/.github/workflows/platform.apiSpecs.yml +++ b/.github/workflows/platform.apiSpecs.yml @@ -23,7 +23,7 @@ jobs: shell: pwsh run: | # Load used functions - . (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'tools' 'platform' 'Set-ApiSpecsTable.ps1') + . (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'tools' 'platform' 'Set-ApiSpecsFile.ps1') $functionInput = @{ SpecsFilePath = Join-Path $env:GITHUB_WORKSPACE 'utilities' 'src' 'apiSpecsList.json' @@ -32,7 +32,7 @@ jobs: Write-Verbose "Invoke task with" -Verbose Write-Verbose ($functionInput | ConvertTo-Json | Out-String) -Verbose - Set-ApiSpecsTable @functionInput -Verbose + Set-ApiSpecsFile @functionInput -Verbose - name: 'Push changes' shell: pwsh diff --git a/utilities/tools/platform/Set-ApiSpecsTable.ps1 b/utilities/tools/platform/Set-ApiSpecsFile.ps1 similarity index 64% rename from utilities/tools/platform/Set-ApiSpecsTable.ps1 rename to utilities/tools/platform/Set-ApiSpecsFile.ps1 index d653d7216a..f22d7d4f4a 100644 --- a/utilities/tools/platform/Set-ApiSpecsTable.ps1 +++ b/utilities/tools/platform/Set-ApiSpecsFile.ps1 @@ -1,4 +1,19 @@ -function Set-ApiSpecsTable { +<# +.SYNOPSIS +Update the API Specs file in the given path + +.DESCRIPTION +Update the API Specs file in the given path. The file contains an outline of all Provider Namespaces with their Resource Types and supported API versions. + +.PARAMETER SpecsFilePath +Optional. The path the the file to create/overwrite. By default points to path '/utilities/src/apiSpecsList.json' + +.EXAMPLE +Set-ApiSpecsFile -SpecsFilePath 'C:/dev/ResourceModules/utilities/src/apiSpecsList.json' + +Update the file in path 'C:/dev/ResourceModules/utilities/src/apiSpecsList.json' with the latest API versions. +#> +function Set-ApiSpecsFile { [CmdletBinding(SupportsShouldProcess = $true)] param ( From 67ae50545334dccf541dffb6136d7bfce531f979 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Sun, 20 Nov 2022 17:05:34 +0100 Subject: [PATCH 08/40] Updated Pester to use JSON file --- .../staticValidation/module.tests.ps1 | 33 ++++++++++++++----- utilities/tools/platform/Set-ApiSpecsFile.ps1 | 20 ++++++----- 2 files changed, 36 insertions(+), 17 deletions(-) diff --git a/utilities/pipelines/staticValidation/module.tests.ps1 b/utilities/pipelines/staticValidation/module.tests.ps1 index d6fa0761f0..d977f2b86f 100644 --- a/utilities/pipelines/staticValidation/module.tests.ps1 +++ b/utilities/pipelines/staticValidation/module.tests.ps1 @@ -1198,7 +1198,14 @@ Describe 'Deployment template tests' -Tag Template { Describe "API version tests [All apiVersions in the template should be 'recent']" -Tag ApiCheck { $testCases = @() - $ApiVersions = Get-AzResourceProvider -ListAvailable + $apiSpecsFilePath = Join-Path $repoRootPath 'utilities' 'src' 'apiSpecsList.json' + + if (-not (Test-Path $apiSpecsFilePath)) { + Write-Verbose "Skipping API tests as no API version are available in path [$apiSpecsFilePath]" + return + } + + $ApiVersions = Get-Content -Path $apiSpecsFilePath -Raw | ConvertFrom-Json foreach ($moduleFolderPath in $moduleFolderPaths) { $moduleFolderName = $moduleFolderPath.Replace('\', '/').Split('/modules/')[1] @@ -1294,18 +1301,28 @@ Describe "API version tests [All apiVersions in the template should be 'recent'] } } - It 'In [] used resource type [] should use one of the recent API version(s). Currently using []' -TestCases $TestCases { + It 'In [] used resource type [] should use one of the recent API version(s). Currently using []' -TestCases $TestCases { param( [string] $moduleName, - [string] $resourceType, + [string] $ResourceType, [string] $TargetApi, [string] $ProviderNamespace, - [object[]] $AvailableApiVersions + [PSCustomObject] $AvailableApiVersions ) - $namespaceResourceTypes = ($AvailableApiVersions | Where-Object { $_.ProviderNamespace -eq $ProviderNamespace }).ResourceTypes - $resourceTypeApiVersions = ($namespaceResourceTypes | Where-Object { $_.ResourceTypeName -eq $resourceType }).ApiVersions + if (-not (($AvailableApiVersions | Get-Member -Type NoteProperty).Name -contains $ProviderNamespace)) { + Write-Warning "[API Test] The Provider Namespace [$ProviderNamespace] is missing in your Azure API versions file. Please consider updating it and if it is still missing to open an issue in the 'AzureAPICrawler' PowerShell module's GitHub repository." + Set-ItResult -Skipped -Because "The Azure API version file is missing the Provider Namespace [$ProviderNamespace]." + return + } + if (-not (($AvailableApiVersions.$ProviderNamespace | Get-Member -Type NoteProperty).Name -contains $ResourceType)) { + Write-Warning "[API Test] The Provider Namespace [$ProviderNamespace] is missing the Resource Type [$ResourceType] in your API versions file. Please consider updating it and if it is still missing to open an issue in the 'AzureAPICrawler' PowerShell module's GitHub repository." + Set-ItResult -Skipped -Because "The Azure API version file is missing the Resource Type [$ResourceType] for Provider Namespace [$ProviderNamespace]." + return + } + + $resourceTypeApiVersions = $AvailableApiVersions.$ProviderNamespace.$ResourceType if (-not $resourceTypeApiVersions) { Write-Warning ('[API Test] We are currently unable to determine the available API versions for resource type [{0}/{1}]' -f $ProviderNamespace, $resourceType) @@ -1314,8 +1331,8 @@ Describe "API version tests [All apiVersions in the template should be 'recent'] # We allow the latest 5 including previews (in case somebody wants to use preview), or the latest 3 non-preview $approvedApiVersions = @() - $approvedApiVersions += $resourceTypeApiVersions | Select-Object -First 5 - $approvedApiVersions += $resourceTypeApiVersions | Where-Object { $_ -notlike '*-preview' } | Select-Object -First 3 + $approvedApiVersions += $resourceTypeApiVersions | Select-Object -Last 5 + $approvedApiVersions += $resourceTypeApiVersions | Where-Object { $_ -notlike '*-preview' } | Select-Object -Last 3 ($approvedApiVersions | Select-Object -Unique) | Should -Contain $TargetApi } } diff --git a/utilities/tools/platform/Set-ApiSpecsFile.ps1 b/utilities/tools/platform/Set-ApiSpecsFile.ps1 index f22d7d4f4a..2186f7987e 100644 --- a/utilities/tools/platform/Set-ApiSpecsFile.ps1 +++ b/utilities/tools/platform/Set-ApiSpecsFile.ps1 @@ -21,6 +21,7 @@ function Set-ApiSpecsFile { [string] $SpecsFilePath = (Join-Path (Split-Path (Split-Path $PSScriptRoot -Parent)) 'src' 'apiSpecsList.json') ) + # Install and or import module if (-not (Get-Module 'AzureAPICrawler' -ListAvailable)) { if ($PSCmdlet.ShouldProcess("Module 'AzureAPICrawler with version [0.1.2]'", 'Install')) { $null = Install-Module 'AzureAPICrawler' -Scope 'CurrentUser' -Repository 'PSGallery' -RequiredVersion '0.1.2' -Force @@ -29,19 +30,20 @@ function Set-ApiSpecsFile { $null = Import-Module 'AzureAPICrawler' + # Fetch data + $res = Get-AzureApiSpecsVersionList -IncludePreview -Verbose + $fileContent = $res | ConvertTo-Json + # Set content if (-not (Test-Path $SpecsFilePath)) { if ($PSCmdlet.ShouldProcess('API Specs file [apiSpecsList.json]', 'Create')) { - Write-Verbose 'Generating new API Specs file' - $null = New-Item -Path $SpecsFilePath -Force + $null = New-Item -Path $SpecsFilePath -Force -Value $fileContent + } + } else { + if ($PSCmdlet.ShouldProcess('API Specs file [apiSpecsList.json]', 'Update')) { + $null = Set-Content -Path $SpecsFilePath -Value $fileContent -Force } } - $res = Get-AzureApiSpecsVersionList -IncludePreview -Verbose - - $fileContent = $res | ConvertTo-Json - - if ($PSCmdlet.ShouldProcess('API Specs file [apiSpecsList.json]', 'Update')) { - $null = Set-Content -Path $SpecsFilePath -Value $fileContent -Force - } + Write-Verbose 'Update complete' } From f50eb8a4f70c9c3c64e85990ffff114c874ddbf7 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Sun, 20 Nov 2022 17:25:43 +0100 Subject: [PATCH 09/40] Updated docs --- docs/wiki/The CI environment - Static validation.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/wiki/The CI environment - Static validation.md b/docs/wiki/The CI environment - Static validation.md index 3c97c59a88..a38537bb0f 100644 --- a/docs/wiki/The CI environment - Static validation.md +++ b/docs/wiki/The CI environment - Static validation.md @@ -54,6 +54,10 @@ In particular, each resource's API version is compared with those currently avai This test also leverages the [`utilities/pipelines/staticValidation/module.tests.ps1`](https://github.com/Azure/ResourceModules/blob/main/utilities/pipelines/staticValidation/module.tests.ps1) script. +To test the API versions, the test leverages the file `utilities/src/apiSpecsList.json` file as a reference for all API versions available for any used Provider Namespace & Resource Type. + +> **NOTE:** This functionality has a dependency on the [AzureAPICrawler](https://www.powershellgallery.com/packages/AzureAPICrawler/0.1.2) PowerShell module. + # Verify the static validation of your module locally This paragraph is intended for CARML contributors or more generally for those leveraging the CARML CI environment and having the need to update or add a new module to the library. From cf243015e8e6f69afc349aa7faaadce845f4f0ab Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 22 Nov 2022 00:30:22 +0100 Subject: [PATCH 10/40] Updated version --- utilities/tools/platform/Set-ApiSpecsFile.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/tools/platform/Set-ApiSpecsFile.ps1 b/utilities/tools/platform/Set-ApiSpecsFile.ps1 index 2186f7987e..f651de788f 100644 --- a/utilities/tools/platform/Set-ApiSpecsFile.ps1 +++ b/utilities/tools/platform/Set-ApiSpecsFile.ps1 @@ -23,8 +23,8 @@ function Set-ApiSpecsFile { # Install and or import module if (-not (Get-Module 'AzureAPICrawler' -ListAvailable)) { - if ($PSCmdlet.ShouldProcess("Module 'AzureAPICrawler with version [0.1.2]'", 'Install')) { - $null = Install-Module 'AzureAPICrawler' -Scope 'CurrentUser' -Repository 'PSGallery' -RequiredVersion '0.1.2' -Force + if ($PSCmdlet.ShouldProcess("Module 'AzureAPICrawler with version [0.1.3]'", 'Install')) { + $null = Install-Module 'AzureAPICrawler' -Scope 'CurrentUser' -Repository 'PSGallery' -RequiredVersion '0.1.3' -Force } } From b3ba8395e9ea7c7a15c7c1af3b5a4dd14ed03daa Mon Sep 17 00:00:00 2001 From: CARMLPipelinePrincipal Date: Mon, 21 Nov 2022 23:32:52 +0000 Subject: [PATCH 11/40] Push updated API Specs file --- utilities/src/apiSpecsList.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json index 69ccd03e93..7cb7a6d4fd 100644 --- a/utilities/src/apiSpecsList.json +++ b/utilities/src/apiSpecsList.json @@ -11383,6 +11383,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "alertRules/actions": [ @@ -11401,6 +11402,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "automationRules": [ @@ -11417,6 +11419,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "bookmarks": [ @@ -11434,6 +11437,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "bookmarks/relations": [ @@ -11475,6 +11479,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "entityQueries": [ @@ -11514,6 +11519,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "incidents/comments": [ @@ -11533,6 +11539,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "incidents/relations": [ @@ -11551,6 +11558,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "metadata": [ @@ -11581,6 +11589,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "securityMLAnalyticsSettings": [ @@ -11590,6 +11599,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "settings": [ @@ -11636,6 +11646,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "watchlists": [ @@ -11654,6 +11665,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ], "watchlists/watchlistItems": [ @@ -11672,6 +11684,7 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", + "2022-11-01", "2022-11-01-preview" ] }, From 5b71581ff28b0f41119c2c1ea5d2e4f0b72a72fe Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 22 Nov 2022 10:09:10 +0100 Subject: [PATCH 12/40] Update to latest --- utilities/tools/platform/Set-ApiSpecsFile.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/tools/platform/Set-ApiSpecsFile.ps1 b/utilities/tools/platform/Set-ApiSpecsFile.ps1 index f651de788f..293da583cd 100644 --- a/utilities/tools/platform/Set-ApiSpecsFile.ps1 +++ b/utilities/tools/platform/Set-ApiSpecsFile.ps1 @@ -23,8 +23,8 @@ function Set-ApiSpecsFile { # Install and or import module if (-not (Get-Module 'AzureAPICrawler' -ListAvailable)) { - if ($PSCmdlet.ShouldProcess("Module 'AzureAPICrawler with version [0.1.3]'", 'Install')) { - $null = Install-Module 'AzureAPICrawler' -Scope 'CurrentUser' -Repository 'PSGallery' -RequiredVersion '0.1.3' -Force + if ($PSCmdlet.ShouldProcess("Module 'AzureAPICrawler with version [0.2.0]'", 'Install')) { + $null = Install-Module 'AzureAPICrawler' -Scope 'CurrentUser' -Repository 'PSGallery' -RequiredVersion '0.2.0' -Force } } From 639a64543083332dae5535a44fd14d838fd07036 Mon Sep 17 00:00:00 2001 From: CARMLPipelinePrincipal Date: Tue, 22 Nov 2022 09:11:53 +0000 Subject: [PATCH 13/40] Push updated API Specs file --- utilities/src/apiSpecsList.json | 54 ++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json index 7cb7a6d4fd..e207006472 100644 --- a/utilities/src/apiSpecsList.json +++ b/utilities/src/apiSpecsList.json @@ -4422,23 +4422,27 @@ "2020-10-31", "2020-12-01", "2021-06-30-preview", - "2022-05-31" + "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-05-31", + "2022-10-31" ], "digitalTwinsInstances/privateEndpointConnections": [ "2020-12-01", "2021-06-30-preview", - "2022-05-31" + "2022-05-31", + "2022-10-31" ], "digitalTwinsInstances/timeSeriesDatabaseConnections": [ "2021-06-30-preview", - "2022-05-31" + "2022-05-31", + "2022-10-31" ] }, "Microsoft.DocumentDB": { @@ -10724,7 +10728,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics": [ "2016-08-10", @@ -10745,7 +10750,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings": [ "2016-08-10", @@ -10766,7 +10772,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics/replicationProtectionContainers": [ "2016-08-10", @@ -10787,7 +10794,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems": [ "2018-01-10", @@ -10807,7 +10815,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems": [ "2016-08-10", @@ -10828,7 +10837,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings": [ "2016-08-10", @@ -10849,7 +10859,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics/replicationRecoveryServicesProviders": [ "2018-01-10", @@ -10869,7 +10880,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings": [ "2016-08-10", @@ -10890,7 +10902,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationFabrics/replicationvCenters": [ "2016-08-10", @@ -10911,7 +10924,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationPolicies": [ "2016-08-10", @@ -10932,7 +10946,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationProtectionIntents": [ "2018-07-10", @@ -10951,7 +10966,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationRecoveryPlans": [ "2016-08-10", @@ -10972,7 +10988,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ], "vaults/replicationVaultSettings": [ "2018-07-10", @@ -10991,7 +11008,8 @@ "2022-04-01", "2022-05-01", "2022-08-01", - "2022-09-10" + "2022-09-10", + "2022-10-01" ] }, "Microsoft.RedHatOpenShift": { From 647f40a291ada92f038f6d6727e7aaffd56bdea9 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 22 Nov 2022 11:56:04 +0100 Subject: [PATCH 14/40] Added gh push trigger for testing --- .github/workflows/platform.apiSpecs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/platform.apiSpecs.yml b/.github/workflows/platform.apiSpecs.yml index bc4c44e1d2..ce79d40e43 100644 --- a/.github/workflows/platform.apiSpecs.yml +++ b/.github/workflows/platform.apiSpecs.yml @@ -1,6 +1,7 @@ name: '.Platform: Update API Specs file' on: + push: workflow_dispatch: schedule: - cron: '0 12 * * 0' # Weekly Sunday Update From f4f1a92d682b348e4f7074a9e1683b9b71004af6 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 22 Nov 2022 13:01:29 +0100 Subject: [PATCH 15/40] Removed temp push trigger again --- .github/workflows/platform.apiSpecs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/platform.apiSpecs.yml b/.github/workflows/platform.apiSpecs.yml index ce79d40e43..bc4c44e1d2 100644 --- a/.github/workflows/platform.apiSpecs.yml +++ b/.github/workflows/platform.apiSpecs.yml @@ -1,7 +1,6 @@ name: '.Platform: Update API Specs file' on: - push: workflow_dispatch: schedule: - cron: '0 12 * * 0' # Weekly Sunday Update From fc4f9fec9e47580a85f5c8ecacbf61bd46ce7795 Mon Sep 17 00:00:00 2001 From: Alexander Sehr Date: Mon, 12 Dec 2022 07:25:57 +0100 Subject: [PATCH 16/40] Update utilities/tools/platform/Set-ApiSpecsFile.ps1 Co-authored-by: Erika Gressi <56914614+eriqua@users.noreply.github.com> --- utilities/tools/platform/Set-ApiSpecsFile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/tools/platform/Set-ApiSpecsFile.ps1 b/utilities/tools/platform/Set-ApiSpecsFile.ps1 index 293da583cd..a49187df47 100644 --- a/utilities/tools/platform/Set-ApiSpecsFile.ps1 +++ b/utilities/tools/platform/Set-ApiSpecsFile.ps1 @@ -37,7 +37,7 @@ function Set-ApiSpecsFile { # Set content if (-not (Test-Path $SpecsFilePath)) { if ($PSCmdlet.ShouldProcess('API Specs file [apiSpecsList.json]', 'Create')) { - $null = New-Item -Path $SpecsFilePath -Force -Value $fileContent + $null = New-Item -Path $SpecsFilePath -Value $fileContent -Force } } else { if ($PSCmdlet.ShouldProcess('API Specs file [apiSpecsList.json]', 'Update')) { From 18fa52254a7792fa22fe17e2562be28db2bc37db Mon Sep 17 00:00:00 2001 From: CARMLPipelinePrincipal Date: Mon, 12 Dec 2022 06:28:54 +0000 Subject: [PATCH 17/40] Push updated API Specs file --- utilities/src/apiSpecsList.json | 382 ++++++++++++++++++++++---------- 1 file changed, 259 insertions(+), 123 deletions(-) diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json index e207006472..43b1b13ee4 100644 --- a/utilities/src/apiSpecsList.json +++ b/utilities/src/apiSpecsList.json @@ -6,14 +6,16 @@ "2020-01-01", "2021-03-01", "2021-05-01", - "2022-09-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-09-01", + "2022-12-01" ] }, "microsoft.aadiam": { @@ -65,7 +67,7 @@ "2021-09-01-preview" ] }, - "microsoft.alertsManagement": { + "Microsoft.AlertsManagement": { "actionRules": [ "2018-11-02-privatepreview", "2019-05-05-preview", @@ -856,51 +858,62 @@ }, "Microsoft.App": { "connectedEnvironments": [ - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "connectedEnvironments/certificates": [ - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "connectedEnvironments/daprComponents": [ - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "connectedEnvironments/storages": [ - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "containerApps": [ "2022-01-01-preview", "2022-03-01", - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "containerApps/authConfigs": [ "2022-01-01-preview", "2022-03-01", - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "containerApps/sourcecontrols": [ "2022-01-01-preview", "2022-03-01", - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "managedEnvironments": [ "2022-01-01-preview", "2022-03-01", - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "managedEnvironments/certificates": [ "2022-01-01-preview", "2022-03-01", - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "managedEnvironments/daprComponents": [ "2022-01-01-preview", "2022-03-01", - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ], "managedEnvironments/storages": [ "2022-01-01-preview", "2022-03-01", - "2022-06-01-preview" + "2022-06-01-preview", + "2022-10-01" ] }, "Microsoft.AppComplianceAutomation": { @@ -951,21 +964,24 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-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-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-11-01-preview", + "2022-12-01" ], "Spring/applicationAccelerators": [ "2022-11-01-preview" @@ -986,7 +1002,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/apps/bindings": [ "2020-07-01", @@ -998,7 +1015,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/apps/deployments": [ "2020-07-01", @@ -1010,7 +1028,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/apps/domains": [ "2020-07-01", @@ -1022,7 +1041,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/buildServices/agentPools": [ "2022-01-01-preview", @@ -1030,7 +1050,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/buildServices/builders": [ "2022-01-01-preview", @@ -1038,7 +1059,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/buildServices/builders/buildpackBindings": [ "2022-01-01-preview", @@ -1046,7 +1068,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/buildServices/builds": [ "2022-01-01-preview", @@ -1054,7 +1077,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/certificates": [ "2020-07-01", @@ -1066,7 +1090,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/configServers": [ "2020-07-01", @@ -1078,7 +1103,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/configurationServices": [ "2022-01-01-preview", @@ -1086,7 +1112,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/DevToolPortals": [ "2022-11-01-preview" @@ -1096,21 +1123,24 @@ "2022-03-01-preview", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-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-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-11-01-preview", + "2022-12-01" ], "Spring/monitoringSettings": [ "2020-07-01", @@ -1122,7 +1152,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/serviceRegistries": [ "2022-01-01-preview", @@ -1130,7 +1161,8 @@ "2022-04-01", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ], "Spring/storages": [ "2021-09-01-preview", @@ -1138,7 +1170,8 @@ "2022-03-01-preview", "2022-05-01-preview", "2022-09-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01" ] }, "Microsoft.Attestation": { @@ -1198,7 +1231,7 @@ "2021-06-01", "2022-06-01" ], - "policyDefinitions": [ + "policydefinitions": [ "2015-10-01-preview", "2015-11-01", "2016-04-01", @@ -1569,29 +1602,37 @@ "2021-07-01-preview", "2021-08-01", "2021-11-01", - "2022-03-01-preview" + "2022-03-01-preview", + "2022-06-15-preview" ], "dataControllers/activeDirectoryConnectors": [ - "2022-03-01-preview" + "2022-03-01-preview", + "2022-06-15-preview" ], "postgresInstances": [ "2021-06-01-preview", "2021-07-01-preview", - "2022-03-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-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-03-01-preview", + "2022-06-15-preview" + ], + "sqlServerInstances/databases": [ + "2022-06-15-preview" ] }, "Microsoft.AzureBridge.Admin": { @@ -1639,7 +1680,8 @@ "2022-03-01", "2022-05-01", "2022-09-01", - "2022-10-01" + "2022-10-01", + "2022-12-01" ], "clusters/arcSettings": [ "2021-01-01-preview", @@ -1649,7 +1691,8 @@ "2022-03-01", "2022-05-01", "2022-09-01", - "2022-10-01" + "2022-10-01", + "2022-12-01" ], "clusters/arcSettings/extensions": [ "2021-01-01-preview", @@ -1659,7 +1702,17 @@ "2022-03-01", "2022-05-01", "2022-09-01", - "2022-10-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", @@ -1880,7 +1933,7 @@ "2021-05-01-preview", "2022-06-15-preview" ], - "botServices/connections": [ + "botServices/Connections": [ "2017-12-01", "2018-07-12", "2020-06-02", @@ -1990,7 +2043,7 @@ ] }, "Microsoft.Cdn": { - "CdnWebApplicationFirewallPolicies": [ + "cdnWebApplicationFirewallPolicies": [ "2019-06-15", "2019-06-15-preview", "2020-03-31", @@ -2260,12 +2313,14 @@ "cloudServices": [ "2020-10-01-preview", "2021-03-01", - "2022-04-04" + "2022-04-04", + "2022-09-04" ], "cloudServices/updateDomains": [ "2020-10-01-preview", "2021-03-01", - "2022-04-04" + "2022-04-04", + "2022-09-04" ], "diskAccesses": [ "2020-05-01", @@ -2570,7 +2625,7 @@ "2022-03-01", "2022-08-01" ], - "virtualMachineScaleSets/virtualMachines": [ + "virtualMachineScaleSets/virtualmachines": [ "2017-12-01", "2018-04-01", "2018-06-01", @@ -2658,51 +2713,63 @@ "Microsoft.ConnectedVMwarevSphere": { "clusters": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "datastores": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "hosts": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "resourcePools": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "vcenters": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "vcenters/inventoryItems": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "virtualMachines": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "virtualMachines/extensions": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "virtualMachines/guestAgents": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "virtualMachines/hybridIdentityMetadata": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "virtualMachineTemplates": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ], "virtualNetworks": [ "2020-10-01-preview", - "2022-01-10-preview" + "2022-01-10-preview", + "2022-07-15-preview" ] }, "Microsoft.Consumption": { @@ -2744,7 +2811,8 @@ "2021-07-01", "2021-09-01", "2021-10-01", - "2022-09-01" + "2022-09-01", + "2022-10-01-preview" ] }, "Microsoft.ContainerRegistry": { @@ -2929,7 +2997,8 @@ "2022-08-02-preview", "2022-08-03-preview", "2022-09-01", - "2022-09-02-preview" + "2022-09-02-preview", + "2022-10-02-preview" ], "managedClusters/agentPools": [ "2019-02-01", @@ -2971,7 +3040,8 @@ "2022-08-02-preview", "2022-08-03-preview", "2022-09-01", - "2022-09-02-preview" + "2022-09-02-preview", + "2022-10-02-preview" ], "managedClusters/maintenanceConfigurations": [ "2020-12-01", @@ -2999,7 +3069,8 @@ "2022-08-02-preview", "2022-08-03-preview", "2022-09-01", - "2022-09-02-preview" + "2022-09-02-preview", + "2022-10-02-preview" ], "managedClusters/privateEndpointConnections": [ "2020-06-01", @@ -3031,7 +3102,8 @@ "2022-08-02-preview", "2022-08-03-preview", "2022-09-01", - "2022-09-02-preview" + "2022-09-02-preview", + "2022-10-02-preview" ], "managedClusters/trustedAccessRoleBindings": [ "2022-04-02-preview", @@ -3040,7 +3112,8 @@ "2022-07-02-preview", "2022-08-02-preview", "2022-08-03-preview", - "2022-09-02-preview" + "2022-09-02-preview", + "2022-10-02-preview" ], "managedclustersnapshots": [ "2022-02-02-preview", @@ -3051,7 +3124,8 @@ "2022-07-02-preview", "2022-08-02-preview", "2022-08-03-preview", - "2022-09-02-preview" + "2022-09-02-preview", + "2022-10-02-preview" ], "openShiftManagedClusters": [ "2018-09-30-preview", @@ -3080,7 +3154,8 @@ "2022-08-02-preview", "2022-08-03-preview", "2022-09-01", - "2022-09-02-preview" + "2022-09-02-preview", + "2022-10-02-preview" ] }, "Microsoft.CostManagement": { @@ -3806,7 +3881,7 @@ "2017-12-01-preview", "2018-06-01-privatepreview" ], - "servers/administrators": [ + "servers/Administrators": [ "2017-12-01", "2017-12-01-preview", "2018-06-01-privatepreview" @@ -5518,7 +5593,7 @@ "namespaces/applicationGroups": [ "2022-01-01-preview" ], - "namespaces/AuthorizationRules": [ + "namespaces/authorizationRules": [ "2014-09-01", "2015-08-01", "2017-04-01", @@ -5694,7 +5769,8 @@ "2021-11-01", "2022-01-31-preview", "2022-05-15", - "2022-06-01" + "2022-06-01", + "2022-10-01-preview" ], "services/privateEndpointConnections": [ "2020-03-30", @@ -5703,48 +5779,58 @@ "2021-11-01", "2022-01-31-preview", "2022-05-15", - "2022-06-01" + "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-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-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-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-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-06-01", + "2022-10-01-preview" ], "workspaces/privateEndpointConnections": [ "2021-11-01", "2022-01-31-preview", "2022-05-15", - "2022-06-01" + "2022-06-01", + "2022-10-01-preview" ] }, "Microsoft.HybridCompute": { @@ -7204,45 +7290,56 @@ "Microsoft.MobileNetwork": { "mobileNetworks": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "mobileNetworks/dataNetworks": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "mobileNetworks/services": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "mobileNetworks/simPolicies": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "mobileNetworks/sites": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "mobileNetworks/slices": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "packetCoreControlPlanes": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "packetCoreControlPlanes/packetCoreDataPlanes": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "packetCoreControlPlanes/packetCoreDataPlanes/attachedDataNetworks": [ "2022-03-01-preview", - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "simGroups": [ - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "simGroups/sims": [ - "2022-04-01-preview" + "2022-04-01-preview", + "2022-11-01" ], "sims": [ "2022-03-01-preview" @@ -7799,7 +7896,7 @@ "2020-04-01-preview", "2022-07-01" ], - "dnsZones": [ + "dnszones": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7807,7 +7904,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/A": [ + "dnszones/A": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7815,7 +7912,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/AAAA": [ + "dnszones/AAAA": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7829,7 +7926,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/CNAME": [ + "dnszones/CNAME": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7837,7 +7934,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/MX": [ + "dnszones/MX": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7845,7 +7942,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/NS": [ + "dnszones/NS": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7853,7 +7950,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/PTR": [ + "dnszones/PTR": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7861,7 +7958,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/SOA": [ + "dnszones/SOA": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7869,7 +7966,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/SRV": [ + "dnszones/SRV": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7877,7 +7974,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnsZones/TXT": [ + "dnszones/TXT": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -9622,7 +9719,7 @@ "2022-05-01", "2022-07-01" ], - "virtualNetworkGateways": [ + "virtualnetworkgateways": [ "2015-05-01-preview", "2015-06-15", "2016-03-30", @@ -9676,7 +9773,7 @@ "2022-05-01", "2022-07-01" ], - "virtualNetworks": [ + "virtualnetworks": [ "2015-05-01-preview", "2015-06-15", "2016-03-30", @@ -9721,7 +9818,7 @@ "2022-05-01", "2022-07-01" ], - "virtualNetworks/subnets": [ + "virtualnetworks/subnets": [ "2015-05-01-preview", "2015-06-15", "2016-03-30", @@ -10478,7 +10575,8 @@ "2022-05-01", "2022-08-01", "2022-09-10", - "2022-09-30-preview" + "2022-09-30-preview", + "2022-10-01" ], "vaults/backupconfig": [ "2019-06-15", @@ -10500,7 +10598,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/backupEncryptionConfigs": [ "2020-10-01", @@ -10521,7 +10620,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/backupFabrics/backupProtectionIntent": [ "2017-07-01", @@ -10540,7 +10640,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/backupFabrics/protectionContainers": [ "2016-12-01", @@ -10562,7 +10663,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/backupFabrics/protectionContainers/protectedItems": [ "2016-06-01", @@ -10586,7 +10688,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/backupPolicies": [ "2016-06-01", @@ -10610,7 +10713,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/backupResourceGuardProxies": [ "2021-02-01-preview", @@ -10623,7 +10727,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/backupstorageconfig": [ "2016-12-01", @@ -10639,7 +10744,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/certificates": [ "2016-06-01", @@ -10662,7 +10768,8 @@ "2022-05-01", "2022-08-01", "2022-09-10", - "2022-09-30-preview" + "2022-09-30-preview", + "2022-10-01" ], "vaults/extendedInformation": [ "2016-06-01", @@ -10685,7 +10792,8 @@ "2022-05-01", "2022-08-01", "2022-09-10", - "2022-09-30-preview" + "2022-09-30-preview", + "2022-10-01" ], "vaults/privateEndpointConnections": [ "2020-02-02", @@ -10707,7 +10815,8 @@ "2022-03-01", "2022-04-01", "2022-06-01-preview", - "2022-09-01-preview" + "2022-09-01-preview", + "2022-10-01" ], "vaults/replicationAlertSettings": [ "2016-08-10", @@ -11016,7 +11125,20 @@ "openShiftClusters": [ "2020-04-30", "2021-09-01-preview", - "2022-04-01" + "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": { @@ -11026,17 +11148,17 @@ "2018-01-01-preview", "2021-11-01" ], - "namespaces/authorizationRules": [ + "namespaces/AuthorizationRules": [ "2016-07-01", "2017-04-01", "2021-11-01" ], - "namespaces/hybridConnections": [ + "namespaces/HybridConnections": [ "2016-07-01", "2017-04-01", "2021-11-01" ], - "namespaces/hybridConnections/authorizationRules": [ + "namespaces/HybridConnections/authorizationRules": [ "2016-07-01", "2017-04-01", "2021-11-01" @@ -11049,12 +11171,12 @@ "2018-01-01-preview", "2021-11-01" ], - "namespaces/wcfRelays": [ + "namespaces/WcfRelays": [ "2016-07-01", "2017-04-01", "2021-11-01" ], - "namespaces/wcfRelays/authorizationRules": [ + "namespaces/WcfRelays/authorizationRules": [ "2016-07-01", "2017-04-01", "2021-11-01" @@ -11993,6 +12115,17 @@ "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", @@ -13045,21 +13178,24 @@ "2021-11-01-preview", "2022-02-01", "2022-02-01-preview", - "2022-07-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-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-07-01-preview", + "2022-08-01-preview" ] }, "Microsoft.Storage": { From 826a9a5dfce7c1cadea8d8f7d09a3dd8afddf717 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 12 Dec 2022 08:45:22 +0100 Subject: [PATCH 18/40] Updated git commands --- .azuredevops/platformPipelines/platform.apiSpecs.yml | 8 ++++---- .github/workflows/platform.apiSpecs.yml | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.azuredevops/platformPipelines/platform.apiSpecs.yml b/.azuredevops/platformPipelines/platform.apiSpecs.yml index 82a7a4d75b..78f1e55174 100644 --- a/.azuredevops/platformPipelines/platform.apiSpecs.yml +++ b/.azuredevops/platformPipelines/platform.apiSpecs.yml @@ -53,9 +53,9 @@ jobs: script: | git config --global user.email '$(pipelinePrincipalGitUserEmail)' git config --global user.name '$(pipelinePrincipalGitUserName)' - Write-Verbose '$(Build.SourceBranch)' -Verbose - git add . + + git pull git status + git add . git commit -m 'Push updated API Specs file' - git pull $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) - git push $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) + git push diff --git a/.github/workflows/platform.apiSpecs.yml b/.github/workflows/platform.apiSpecs.yml index bc4c44e1d2..14ac96d098 100644 --- a/.github/workflows/platform.apiSpecs.yml +++ b/.github/workflows/platform.apiSpecs.yml @@ -41,6 +41,7 @@ jobs: git config --global user.name '${{ env.pipelinePrincipalGitUserName }}' git pull + git status git add . git commit -m 'Push updated API Specs file' git push From 6fd34e09320698a4b00f78696b94142fcd55f8ea Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 12 Dec 2022 10:00:13 +0100 Subject: [PATCH 19/40] Addressed param comment --- .../platformPipelines/platform.apiSpecs.yml | 3 ++- .github/workflows/platform.apiSpecs.yml | 3 ++- utilities/tools/platform/Set-ApiSpecsFile.ps1 | 20 +++++++++++++++++-- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.azuredevops/platformPipelines/platform.apiSpecs.yml b/.azuredevops/platformPipelines/platform.apiSpecs.yml index 78f1e55174..5462600de4 100644 --- a/.azuredevops/platformPipelines/platform.apiSpecs.yml +++ b/.azuredevops/platformPipelines/platform.apiSpecs.yml @@ -37,7 +37,8 @@ jobs: . (Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'tools' 'platform' 'Set-ApiSpecsFile.ps1') $functionInput = @{ - SpecsFilePath = Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'src' 'apiSpecsList.json' + SpecsFilePath = Join-Path '$(System.DefaultWorkingDirectory)' 'utilities' 'src' 'apiSpecsList.json' + IncludePreview = $true } Write-Verbose "Invoke task with" -Verbose diff --git a/.github/workflows/platform.apiSpecs.yml b/.github/workflows/platform.apiSpecs.yml index 14ac96d098..8b896912e4 100644 --- a/.github/workflows/platform.apiSpecs.yml +++ b/.github/workflows/platform.apiSpecs.yml @@ -26,7 +26,8 @@ jobs: . (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'tools' 'platform' 'Set-ApiSpecsFile.ps1') $functionInput = @{ - SpecsFilePath = Join-Path $env:GITHUB_WORKSPACE 'utilities' 'src' 'apiSpecsList.json' + SpecsFilePath = Join-Path $env:GITHUB_WORKSPACE 'utilities' 'src' 'apiSpecsList.json' + IncludePreview = $true } Write-Verbose "Invoke task with" -Verbose diff --git a/utilities/tools/platform/Set-ApiSpecsFile.ps1 b/utilities/tools/platform/Set-ApiSpecsFile.ps1 index a49187df47..9792661071 100644 --- a/utilities/tools/platform/Set-ApiSpecsFile.ps1 +++ b/utilities/tools/platform/Set-ApiSpecsFile.ps1 @@ -8,6 +8,12 @@ Update the API Specs file in the given path. The file contains an outline of all .PARAMETER SpecsFilePath Optional. The path the the file to create/overwrite. By default points to path '/utilities/src/apiSpecsList.json' +.PARAMETER ModuleVersion +Optional. The module version of the AzureAPICrawler to install. Available versions at: https://www.powershellgallery.com/packages/AzureAPICrawler + +.PARAMETER IncludePreview +Optional. A switch parameter to control whether or not to include Preview versions in the table + .EXAMPLE Set-ApiSpecsFile -SpecsFilePath 'C:/dev/ResourceModules/utilities/src/apiSpecsList.json' @@ -18,7 +24,13 @@ function Set-ApiSpecsFile { [CmdletBinding(SupportsShouldProcess = $true)] param ( [Parameter(Mandatory = $false)] - [string] $SpecsFilePath = (Join-Path (Split-Path (Split-Path $PSScriptRoot -Parent)) 'src' 'apiSpecsList.json') + [string] $SpecsFilePath = (Join-Path (Split-Path (Split-Path $PSScriptRoot -Parent)) 'src' 'apiSpecsList.json'), + + [Parameter(Mandatory = $false)] + [string] $ModuleVersion = '0.2.0', + + [Parameter(Mandatory = $false)] + [switch] $IncludePreview ) # Install and or import module @@ -31,7 +43,11 @@ function Set-ApiSpecsFile { $null = Import-Module 'AzureAPICrawler' # Fetch data - $res = Get-AzureApiSpecsVersionList -IncludePreview -Verbose + $getInputObject = @{ + IncludePreview = $true + Verbose = $true + } + $res = Get-AzureApiSpecsVersionList @getInputObject $fileContent = $res | ConvertTo-Json # Set content From b6e37b52f320b09db38564990d5681ba60d06a8d Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 12 Dec 2022 10:33:59 +0100 Subject: [PATCH 20/40] Introduced api version setting --- .../jobs.validateModulePester.yml | 1 + .../templates/validateModulePester/action.yml | 5 +- settings.yml | 84 +++++++++++-------- .../staticValidation/module.tests.ps1 | 75 ++++++++++------- 4 files changed, 96 insertions(+), 69 deletions(-) diff --git a/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml b/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml index 18d22d8791..af680ed90a 100644 --- a/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml +++ b/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml @@ -168,6 +168,7 @@ jobs: Container = New-PesterContainer -Path (Join-Path $repoRootPath $moduleTestFilePath) -Data @{ moduleFolderPaths = $moduleFolderPaths tokenConfiguration = $tokenConfiguration + allowPreviewVersionsInAPITests = [bool] '$(ALLOWPREVIEWVERSIONSINAPITESTS)' } } TestResult = @{ diff --git a/.github/actions/templates/validateModulePester/action.yml b/.github/actions/templates/validateModulePester/action.yml index 8636f2830f..5072f6cf89 100644 --- a/.github/actions/templates/validateModulePester/action.yml +++ b/.github/actions/templates/validateModulePester/action.yml @@ -126,8 +126,9 @@ runs: Invoke-Pester -Configuration @{ Run = @{ Container = New-PesterContainer -Path (Join-Path $repoRootPath $moduleTestFilePath) -Data @{ - moduleFolderPaths = $moduleFolderPaths - tokenConfiguration = $tokenConfiguration + moduleFolderPaths = $moduleFolderPaths + tokenConfiguration = $tokenConfiguration + allowPreviewVersionsInAPITests = [bool] ${{ env.allowPreviewVersionsInAPITests }} } } TestResult = @{ diff --git a/settings.yml b/settings.yml index 37c759f5f5..5e82280e1e 100644 --- a/settings.yml +++ b/settings.yml @@ -7,59 +7,65 @@ variables: # See: https://github.com/Azure/ResourceModules/wiki/The%20library%20-%20Module%20design#telemetry enableDefaultTelemetry: true - ###################################### - # Local tokens settings - ###################################### + ######################### + ## Tokens settings ## + ######################### # the 'localToken_' prefix will be removed from the key name when the pipelines run. # e.g. if you have a token in your parameter file as <>, then the token defined in this file looks like "localToken_customKey": 'value' localToken_namePrefix: '' # A 3-5 character length unique string, included in the resources names (e.g. 'cntso'). Used for local module testing and pipelines. - ###################################### - # global tokens settings - ###################################### - # this determines the starting prefix and ending suffix of the token in your file. tokenPrefix: '<<' tokenSuffix: '>>' - ###################################### - # Agent settings - ###################################### + ######################## + ## Agent settings ## + ######################## vmImage: 'ubuntu-latest' # Use this for Microsoft-hosted agents poolName: '' # Use this for self-hosted agents - ###################################### - # Common folders and file paths - ###################################### + ####################################### + ## Common folders and file paths ## + ####################################### moduleTestFilePath: 'utilities/pipelines/staticValidation/module.tests.ps1' - ###################################### - # Validation deployment settings - ###################################### + ############################# + ## Validation settings ## + ############################# + + # Static validation # + # ----------------- # + + allowPreviewVersionsInAPITests: true # When enabled, preview versions do not fail the API version tests in the `module.tests.ps1` file + + # Deployment validation # + # --------------------- # location: 'West Europe' # The default location to test deploy resources to - ###################################### - # Publish: Shared settings - ###################################### + ############################# + ## Publishing settings ## + ############################# + + # Shared settings # + # --------------- # publishLatest: true # [Only for Template-Specs & Bicep Registry] Publish an absolute latest version. Note: This version may include breaking changes and is not recommended for production environments - ###################################### - # Publish: Template-Spec settings - ###################################### + # Template-Spec settings # + # ---------------------- # templateSpecsDoPublish: true # Set to true, if you would like to publish module templates as template specs templateSpecsRGName: 'artifacts-rg' # The name of the resource group to publish to. If the resource group does not exist, it will be created. templateSpecsRGLocation: 'West Europe' # The location of the resource group to publish to templateSpecsDescription: components # The description to add to template specs published by this platform - ###################################### - # Publish: Private Bicep Registry settings - ###################################### + # ------------------------------- # + # Private Bicep Registry settings # + # ------------------------------- # bicepRegistryDoPublish: true # Set to true, if you would like to publish module templates to a bicep registry bicepRegistryName: adpsxxazacrx001 # The name of the bicep registry (ACR) to publish to. If it does not exist, it will be created. @@ -70,33 +76,37 @@ variables: ################################################## Azure DevOps Only ###################################################### ########################################################################################################################### - ###################################### - # Connection settings - ###################################### + ############################# + ## Connection settings ## + ############################# serviceConnection: 'CARML-CSU-Tenant-Connection' - ###################################### - # Source - ###################################### + ################ + ## Source ## + ################ vstsOrganizationURI: '$(System.CollectionUri)' # The URI of the TFS collection or Azure DevOps organization. For example: https://dev.azure.com/fabrikam/. vstsProject: '$(System.TeamProject)' modulesRepository: ResourceModules # The repository hosting the deployment code (i.e. 'Components'). MUST be provided as a variable with every pipeline pipelineFunctionsPath: 'utilities/pipelines' - ###################################### - # Publish: Universal packages settings - ###################################### + + ############################# + ## Publishing settings ## + ############################# + + # Universal packages settings # + # --------------------------- # artifactsFeedDoPublish: true # Set to true, if you would like to publish modules as Universal Packages (in Azure DevOps Artifacts) vstsFeedName: 'ResourceModules' # The name of the Azure DevOps universal packages feed to publish to vstsFeedProject: '$(System.TeamProject)' # The project that hosts the feed vstsFeedToken: $(System.AccessToken) # The token used to publish universal packages into the feed above - ###################################### - # Azure PowerShell Version - ###################################### + ################################# + # Azure PowerShell Version ## + ################################# # Should be set to 'latestVersion' unless there is an issue with the Az PowerShell modules. # If a specific version needs to be set azurePowerShellVersion should be changed to 'OtherVersion'. diff --git a/utilities/pipelines/staticValidation/module.tests.ps1 b/utilities/pipelines/staticValidation/module.tests.ps1 index 1630036217..5491472abd 100644 --- a/utilities/pipelines/staticValidation/module.tests.ps1 +++ b/utilities/pipelines/staticValidation/module.tests.ps1 @@ -11,7 +11,10 @@ param ( # Dedicated Tokens configuration hashtable containing the tokens and token prefix and suffix. [Parameter(Mandatory = $false)] - [hashtable] $tokenConfiguration = @{} + [hashtable] $tokenConfiguration = @{}, + + [Parameter(Mandatory = $false)] + [bool] $AllowPreviewVersionsInAPITests = $true ) Write-Verbose ("repoRootPath: $repoRootPath") -Verbose @@ -1248,52 +1251,57 @@ Describe "API version tests [All apiVersions in the template should be 'recent'] switch ($resource.type) { { $PSItem -like '*diagnosticsettings*' } { $testCases += @{ - moduleName = $moduleFolderName - resourceType = 'diagnosticsettings' - ProviderNamespace = 'Microsoft.insights' - TargetApi = $resource.ApiVersion - AvailableApiVersions = $ApiVersions + moduleName = $moduleFolderName + resourceType = 'diagnosticsettings' + ProviderNamespace = 'Microsoft.insights' + TargetApi = $resource.ApiVersion + AvailableApiVersions = $ApiVersions + AllowPreviewVersionsInAPITests = $AllowPreviewVersionsInAPITests } break } { $PSItem -like '*locks' } { $testCases += @{ - moduleName = $moduleFolderName - resourceType = 'locks' - ProviderNamespace = 'Microsoft.Authorization' - TargetApi = $resource.ApiVersion - AvailableApiVersions = $ApiVersions + moduleName = $moduleFolderName + resourceType = 'locks' + ProviderNamespace = 'Microsoft.Authorization' + TargetApi = $resource.ApiVersion + AvailableApiVersions = $ApiVersions + AllowPreviewVersionsInAPITests = $AllowPreviewVersionsInAPITests } break } { $PSItem -like '*roleAssignments' } { $testCases += @{ - moduleName = $moduleFolderName - resourceType = 'roleassignments' - ProviderNamespace = 'Microsoft.Authorization' - TargetApi = $resource.ApiVersion - AvailableApiVersions = $ApiVersions + moduleName = $moduleFolderName + resourceType = 'roleassignments' + ProviderNamespace = 'Microsoft.Authorization' + TargetApi = $resource.ApiVersion + AvailableApiVersions = $ApiVersions + AllowPreviewVersionsInAPITests = $AllowPreviewVersionsInAPITests } break } { $PSItem -like '*privateEndpoints' -and ($PSItem -notlike '*managedPrivateEndpoints') } { $testCases += @{ - moduleName = $moduleFolderName - resourceType = 'privateEndpoints' - ProviderNamespace = 'Microsoft.Network' - TargetApi = $resource.ApiVersion - AvailableApiVersions = $ApiVersions + moduleName = $moduleFolderName + resourceType = 'privateEndpoints' + ProviderNamespace = 'Microsoft.Network' + TargetApi = $resource.ApiVersion + AvailableApiVersions = $ApiVersions + AllowPreviewVersionsInAPITests = $AllowPreviewVersionsInAPITests } break } Default { $ProviderNamespace, $rest = $resource.Type.Split('/') $testCases += @{ - moduleName = $moduleFolderName - resourceType = $rest -join '/' - ProviderNamespace = $ProviderNamespace - TargetApi = $resource.ApiVersion - AvailableApiVersions = $ApiVersions + moduleName = $moduleFolderName + resourceType = $rest -join '/' + ProviderNamespace = $ProviderNamespace + TargetApi = $resource.ApiVersion + AvailableApiVersions = $ApiVersions + AllowPreviewVersionsInAPITests = $AllowPreviewVersionsInAPITests } break } @@ -1308,7 +1316,8 @@ Describe "API version tests [All apiVersions in the template should be 'recent'] [string] $ResourceType, [string] $TargetApi, [string] $ProviderNamespace, - [PSCustomObject] $AvailableApiVersions + [PSCustomObject] $AvailableApiVersions, + [bool] $AllowPreviewVersionsInAPITests ) if (-not (($AvailableApiVersions | Get-Member -Type NoteProperty).Name -contains $ProviderNamespace)) { @@ -1329,10 +1338,16 @@ Describe "API version tests [All apiVersions in the template should be 'recent'] continue } - # We allow the latest 5 including previews (in case somebody wants to use preview), or the latest 3 non-preview $approvedApiVersions = @() - $approvedApiVersions += $resourceTypeApiVersions | Select-Object -Last 5 - $approvedApiVersions += $resourceTypeApiVersions | Where-Object { $_ -notlike '*-preview' } | Select-Object -Last 3 + if ($AllowPreviewVersionsInAPITests) { + # We allow the latest 5 including previews (in case somebody wants to use preview), or the latest 3 non-preview + $approvedApiVersions += $resourceTypeApiVersions | Select-Object -Last 5 + $approvedApiVersions += $resourceTypeApiVersions | Where-Object { $_ -notlike '*-preview' } | Select-Object -Last 3 + } else { + # We allow the latest 3 non-preview preview + $approvedApiVersions += $resourceTypeApiVersions | Where-Object { $_ -notlike '*-preview' } | Select-Object -Last 3 + } + ($approvedApiVersions | Select-Object -Unique) | Should -Contain $TargetApi } } From c7809500cee8368d8528df5bbb309f32f6453afc Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 12 Dec 2022 10:36:59 +0100 Subject: [PATCH 21/40] Undid ado pipe changes --- .azuredevops/platformPipelines/platform.apiSpecs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azuredevops/platformPipelines/platform.apiSpecs.yml b/.azuredevops/platformPipelines/platform.apiSpecs.yml index 5462600de4..801ffdb0aa 100644 --- a/.azuredevops/platformPipelines/platform.apiSpecs.yml +++ b/.azuredevops/platformPipelines/platform.apiSpecs.yml @@ -55,8 +55,8 @@ jobs: git config --global user.email '$(pipelinePrincipalGitUserEmail)' git config --global user.name '$(pipelinePrincipalGitUserName)' - git pull - git status git add . + git status git commit -m 'Push updated API Specs file' - git push + git pull $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) + git push $(Build.Repository.Uri) HEAD:$(Build.SourceBranch) From cf26a61cfe7d637d30ebf04e05e21afacf196e0a Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 12 Dec 2022 10:44:48 +0100 Subject: [PATCH 22/40] Update to latest --- .github/actions/templates/validateModulePester/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/templates/validateModulePester/action.yml b/.github/actions/templates/validateModulePester/action.yml index 5072f6cf89..e936832b2e 100644 --- a/.github/actions/templates/validateModulePester/action.yml +++ b/.github/actions/templates/validateModulePester/action.yml @@ -128,7 +128,7 @@ runs: Container = New-PesterContainer -Path (Join-Path $repoRootPath $moduleTestFilePath) -Data @{ moduleFolderPaths = $moduleFolderPaths tokenConfiguration = $tokenConfiguration - allowPreviewVersionsInAPITests = [bool] ${{ env.allowPreviewVersionsInAPITests }} + allowPreviewVersionsInAPITests = [bool] '${{ env.allowPreviewVersionsInAPITests }}' } } TestResult = @{ From d3bdc2b4324c938d1ea70adc94693baf34191379 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 12 Dec 2022 11:28:38 +0100 Subject: [PATCH 23/40] Added warning message for expiring API versions --- .../staticValidation/module.tests.ps1 | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/utilities/pipelines/staticValidation/module.tests.ps1 b/utilities/pipelines/staticValidation/module.tests.ps1 index 5491472abd..66594a037c 100644 --- a/utilities/pipelines/staticValidation/module.tests.ps1 +++ b/utilities/pipelines/staticValidation/module.tests.ps1 @@ -1348,6 +1348,25 @@ Describe "API version tests [All apiVersions in the template should be 'recent'] $approvedApiVersions += $resourceTypeApiVersions | Where-Object { $_ -notlike '*-preview' } | Select-Object -Last 3 } - ($approvedApiVersions | Select-Object -Unique) | Should -Contain $TargetApi + $approvedApiVersions = $approvedApiVersions | Sort-Object -Unique -Descending + $approvedApiVersions | Should -Contain $TargetApi + + # Provide a warning if an API version is second to next to expire. + if ($approvedApiVersions -contains $TargetApi) { + $indexOfVersion = $approvedApiVersions.IndexOf($TargetApi) + + # Example + # Available versions: + # + # 2017-08-01-beta + # 2017-08-01 < $TargetApi (Index = 1) + # 2017-07-14 + # 2016-05-16 + + if ($indexOfVersion -gt ($approvedApiVersions.Count - 2)) { + $newerAPIVersions = $approvedApiVersions[0..($indexOfVersion - 1)] + Write-Warning ("The used API version [$TargetApi] for Resource Type [$ProviderNamespace/$ResourceType] will soon expire. Please consider updating it. Consider using one of the newer API versions [{0}]" -f ($newerAPIVersions -join ', ')) + } + } } } From c217070073941edc8b68d293de8ec50b63b1987a Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 12 Dec 2022 15:11:56 +0100 Subject: [PATCH 24/40] Disallowing preview for test --- settings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.yml b/settings.yml index 5e82280e1e..f3522a820f 100644 --- a/settings.yml +++ b/settings.yml @@ -39,7 +39,7 @@ variables: # Static validation # # ----------------- # - allowPreviewVersionsInAPITests: true # When enabled, preview versions do not fail the API version tests in the `module.tests.ps1` file + allowPreviewVersionsInAPITests: false # When enabled, preview versions do not fail the API version tests in the `module.tests.ps1` file # Deployment validation # # --------------------- # From c14625bd2f9716763263d3ac8311452ce235bf29 Mon Sep 17 00:00:00 2001 From: CARMLPipelinePrincipal Date: Mon, 12 Dec 2022 14:14:48 +0000 Subject: [PATCH 25/40] Push updated API Specs file --- utilities/src/apiSpecsList.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json index 43b1b13ee4..620cab53a2 100644 --- a/utilities/src/apiSpecsList.json +++ b/utilities/src/apiSpecsList.json @@ -65,6 +65,9 @@ ], "farmBeats/privateEndpointConnections": [ "2021-09-01-preview" + ], + "farmBeats/solutions": [ + "2021-09-01-preview" ] }, "Microsoft.AlertsManagement": { From c62a4ba1a8c5b22d3d563b96877b3101f61f694a Mon Sep 17 00:00:00 2001 From: Alexander Sehr Date: Mon, 12 Dec 2022 23:13:58 +0100 Subject: [PATCH 26/40] Update docs/wiki/The CI environment - Static validation.md Co-authored-by: Erika Gressi <56914614+eriqua@users.noreply.github.com> --- docs/wiki/The CI environment - Static validation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/The CI environment - Static validation.md b/docs/wiki/The CI environment - Static validation.md index 1c60f5c156..cf9f33ae08 100644 --- a/docs/wiki/The CI environment - Static validation.md +++ b/docs/wiki/The CI environment - Static validation.md @@ -56,7 +56,7 @@ This test also leverages the [`utilities/pipelines/staticValidation/module.tests To test the API versions, the test leverages the file `utilities/src/apiSpecsList.json` file as a reference for all API versions available for any used Provider Namespace & Resource Type. -> **NOTE:** This functionality has a dependency on the [AzureAPICrawler](https://www.powershellgallery.com/packages/AzureAPICrawler/0.1.2) PowerShell module. +> **NOTE:** This functionality has a dependency on the [AzureAPICrawler](https://www.powershellgallery.com/packages/AzureAPICrawler) PowerShell module. # Verify the static validation of your module locally From cd9d7717295d5d8e6b5cb6cefc56f64d21773a09 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 13 Dec 2022 16:21:44 +0100 Subject: [PATCH 27/40] Added verbosity --- .../jobs.validateModulePester.yml | 15 ++++++++++----- .../templates/setEnvironmentVariables/action.yml | 2 +- .../templates/validateModulePester/action.yml | 15 ++++++++++----- .../sharedScripts/Add-YamlListToFile.ps1 | 4 +++- 4 files changed, 24 insertions(+), 12 deletions(-) diff --git a/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml b/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml index af680ed90a..d086c79f6f 100644 --- a/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml +++ b/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml @@ -163,13 +163,18 @@ jobs: # --------------------- # # Invoke Pester test(s) # # --------------------- # + $testContainerData = @{ + moduleFolderPaths = $moduleFolderPaths + tokenConfiguration = $tokenConfiguration + allowPreviewVersionsInAPITests = [bool] '$(ALLOWPREVIEWVERSIONSINAPITESTS)' + } + + Write-Verbose 'Invoke test with' -Verbose + Write-Verbose ($testContainerData | ConvertTo-Json | Out-String) -Verbose + Invoke-Pester -Configuration @{ Run = @{ - Container = New-PesterContainer -Path (Join-Path $repoRootPath $moduleTestFilePath) -Data @{ - moduleFolderPaths = $moduleFolderPaths - tokenConfiguration = $tokenConfiguration - allowPreviewVersionsInAPITests = [bool] '$(ALLOWPREVIEWVERSIONSINAPITESTS)' - } + Container = New-PesterContainer -Path (Join-Path $repoRootPath $moduleTestFilePath) -Data $testContainerData } TestResult = @{ TestSuiteName = 'Module Tests' diff --git a/.github/actions/templates/setEnvironmentVariables/action.yml b/.github/actions/templates/setEnvironmentVariables/action.yml index e7924886da..9f1188fc02 100644 --- a/.github/actions/templates/setEnvironmentVariables/action.yml +++ b/.github/actions/templates/setEnvironmentVariables/action.yml @@ -75,6 +75,6 @@ runs: Write-Verbose ($functionInput | ConvertTo-Json | Out-String) -Verbose # Convert YAML Variable File to Environment Variables - Add-YamlListToFile @functionInput -Verbose + Add-YamlListToFile @functionInput Write-Output '::endgroup::' diff --git a/.github/actions/templates/validateModulePester/action.yml b/.github/actions/templates/validateModulePester/action.yml index e936832b2e..bd7680e6b1 100644 --- a/.github/actions/templates/validateModulePester/action.yml +++ b/.github/actions/templates/validateModulePester/action.yml @@ -123,13 +123,18 @@ runs: # --------------------- # # Invoke Pester test(s) # # --------------------- # + $testContainerData = @{ + moduleFolderPaths = $moduleFolderPaths + tokenConfiguration = $tokenConfiguration + allowPreviewVersionsInAPITests = [bool] '${{ env.allowPreviewVersionsInAPITests }}' + } + + Write-Verbose 'Invoke test with' -Verbose + Write-Verbose ($testContainerData | ConvertTo-Json | Out-String) -Verbose + Invoke-Pester -Configuration @{ Run = @{ - Container = New-PesterContainer -Path (Join-Path $repoRootPath $moduleTestFilePath) -Data @{ - moduleFolderPaths = $moduleFolderPaths - tokenConfiguration = $tokenConfiguration - allowPreviewVersionsInAPITests = [bool] '${{ env.allowPreviewVersionsInAPITests }}' - } + Container = New-PesterContainer -Path (Join-Path $repoRootPath $moduleTestFilePath) -Data $testContainerData } TestResult = @{ TestSuiteName = 'Module Tests' diff --git a/utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 b/utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 index 0847b815d4..06f541205f 100644 --- a/utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 +++ b/utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 @@ -63,12 +63,14 @@ function Add-YamlListToFile { # Process List (Hashtable) $KeyValuePair = $InputFileContent | ConvertFrom-Yaml | Select-Object -ExpandProperty $ListName - Write-Verbose ('Found [{0}] Key-Value pairs in List [{1}]' -f $KeyValuePair.Count, $ListName) -Verbose + Write-Verbose ('Found [{0}] Key-Value pairs' -f $KeyValuePair.Count) -Verbose + if (-not $KeyValuePair) { throw "No key-value pairs found in List: $ListName" } # Process key value pairs in the list foreach ($Key in $KeyValuePair.Keys.split(' ')) { + Write-Verbose ('Setting environment variable [{0}] with value [{1}]' -f $Key, $KeyValuePair[$Key]) -Verbose Write-Output "$Key=$($KeyValuePair[$Key])" | Out-File -FilePath $OutputFilePath -Encoding utf-8 -Append } } From 0e9104966fa31538606cbb305161df7213fab6cc Mon Sep 17 00:00:00 2001 From: CARMLPipelinePrincipal Date: Tue, 13 Dec 2022 15:24:33 +0000 Subject: [PATCH 28/40] Push updated API Specs file --- utilities/src/apiSpecsList.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json index 620cab53a2..6df85f315f 100644 --- a/utilities/src/apiSpecsList.json +++ b/utilities/src/apiSpecsList.json @@ -4381,22 +4381,26 @@ "accounts": [ "2020-03-01-preview", "2022-04-01-preview", - "2022-10-01" + "2022-10-01", + "2022-12-01-preview" ], "accounts/instances": [ "2020-03-01-preview", "2022-04-01-preview", - "2022-10-01" + "2022-10-01", + "2022-12-01-preview" ], "accounts/privateEndpointConnectionProxies": [ "2020-03-01-preview", "2022-04-01-preview", - "2022-10-01" + "2022-10-01", + "2022-12-01-preview" ], "accounts/privateEndpointConnections": [ "2020-03-01-preview", "2022-04-01-preview", - "2022-10-01" + "2022-10-01", + "2022-12-01-preview" ] }, "Microsoft.DevOps": { From f0c772064f1a3b824d95b60a0546f8f40e0dc3a3 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 13 Dec 2022 16:26:26 +0100 Subject: [PATCH 29/40] Update to latest --- utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 b/utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 index 06f541205f..fdb8121bb0 100644 --- a/utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 +++ b/utilities/pipelines/sharedScripts/Add-YamlListToFile.ps1 @@ -69,7 +69,7 @@ function Add-YamlListToFile { throw "No key-value pairs found in List: $ListName" } # Process key value pairs in the list - foreach ($Key in $KeyValuePair.Keys.split(' ')) { + foreach ($Key in ($KeyValuePair.Keys.split(' ') | Sort-Object)) { Write-Verbose ('Setting environment variable [{0}] with value [{1}]' -f $Key, $KeyValuePair[$Key]) -Verbose Write-Output "$Key=$($KeyValuePair[$Key])" | Out-File -FilePath $OutputFilePath -Encoding utf-8 -Append } From 856307e1f8c3ded9eaa2e4c896371fca07d8eebc Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 13 Dec 2022 16:28:44 +0100 Subject: [PATCH 30/40] Update to latest --- .azuredevops/pipelineTemplates/jobs.validateModulePester.yml | 2 +- .github/actions/templates/validateModulePester/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml b/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml index d086c79f6f..ef4101980e 100644 --- a/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml +++ b/.azuredevops/pipelineTemplates/jobs.validateModulePester.yml @@ -166,7 +166,7 @@ jobs: $testContainerData = @{ moduleFolderPaths = $moduleFolderPaths tokenConfiguration = $tokenConfiguration - allowPreviewVersionsInAPITests = [bool] '$(ALLOWPREVIEWVERSIONSINAPITESTS)' + allowPreviewVersionsInAPITests = [System.Convert]::ToBoolean('$(ALLOWPREVIEWVERSIONSINAPITESTS)') } Write-Verbose 'Invoke test with' -Verbose diff --git a/.github/actions/templates/validateModulePester/action.yml b/.github/actions/templates/validateModulePester/action.yml index bd7680e6b1..3bcd7eb3f6 100644 --- a/.github/actions/templates/validateModulePester/action.yml +++ b/.github/actions/templates/validateModulePester/action.yml @@ -126,7 +126,7 @@ runs: $testContainerData = @{ moduleFolderPaths = $moduleFolderPaths tokenConfiguration = $tokenConfiguration - allowPreviewVersionsInAPITests = [bool] '${{ env.allowPreviewVersionsInAPITests }}' + allowPreviewVersionsInAPITests = [System.Convert]::ToBoolean('${{ env.allowPreviewVersionsInAPITests }}') } Write-Verbose 'Invoke test with' -Verbose From e57e58f1d014ee7f6d795951a9125166e285394d Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 13 Dec 2022 16:33:58 +0100 Subject: [PATCH 31/40] Update to latest --- settings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.yml b/settings.yml index f3522a820f..5e82280e1e 100644 --- a/settings.yml +++ b/settings.yml @@ -39,7 +39,7 @@ variables: # Static validation # # ----------------- # - allowPreviewVersionsInAPITests: false # When enabled, preview versions do not fail the API version tests in the `module.tests.ps1` file + allowPreviewVersionsInAPITests: true # When enabled, preview versions do not fail the API version tests in the `module.tests.ps1` file # Deployment validation # # --------------------- # From 6578028d7157e0dae1683df772c45ecb3cbf746d Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 13 Dec 2022 16:42:35 +0100 Subject: [PATCH 32/40] Update to latest --- docs/wiki/The CI environment - Static validation.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/wiki/The CI environment - Static validation.md b/docs/wiki/The CI environment - Static validation.md index cf9f33ae08..2a093c6290 100644 --- a/docs/wiki/The CI environment - Static validation.md +++ b/docs/wiki/The CI environment - Static validation.md @@ -18,7 +18,7 @@ The following activities are performed by the [`utilities/pipelines/staticValida - **File & folder tests** validate that the module folder structure is set up in the intended way, e.g.: - readme.md file exists - - template file (either deploy.json or deploy.bicep) exists + - template file (either `deploy.json` or `deploy.bicep`) exists - compliance with file naming convention - **Deployment template tests** check the template's structure and elements for errors as well as consistency matters, e.g.: - template file (or the built bicep template) converts from JSON and has all expected properties @@ -56,6 +56,8 @@ This test also leverages the [`utilities/pipelines/staticValidation/module.tests To test the API versions, the test leverages the file `utilities/src/apiSpecsList.json` file as a reference for all API versions available for any used Provider Namespace & Resource Type. +> **NOTE:** If this file does not exist, the API tests will be skipped. + > **NOTE:** This functionality has a dependency on the [AzureAPICrawler](https://www.powershellgallery.com/packages/AzureAPICrawler) PowerShell module. # Verify the static validation of your module locally From 12bbfc58fd8cfbfe76f9433e2c2a95d5ebb86180 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 13 Dec 2022 16:48:51 +0100 Subject: [PATCH 33/40] Update to latest --- docs/wiki/The CI environment - Static validation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/wiki/The CI environment - Static validation.md b/docs/wiki/The CI environment - Static validation.md index 2a093c6290..abcbf767c5 100644 --- a/docs/wiki/The CI environment - Static validation.md +++ b/docs/wiki/The CI environment - Static validation.md @@ -60,6 +60,8 @@ To test the API versions, the test leverages the file `utilities/src/apiSpecsLis > **NOTE:** This functionality has a dependency on the [AzureAPICrawler](https://www.powershellgallery.com/packages/AzureAPICrawler) PowerShell module. +The pipeline `platform.apiSpecs.yml` updates this file using the script `utilities/tools/platform/Set-ApiSpecsFile.ps1` and, once registered, runs on a weekly schedule. During runtime, the script installs & imports the `AzureAPICrawler` module, fetches all available API versions for all Resource Types via the module and updates the JSON file according to the latest information. + # Verify the static validation of your module locally This paragraph is intended for CARML contributors or more generally for those leveraging the CARML CI environment and having the need to update or add a new module to the library. From 617adc3b15cec8024611d6c7b50dfa3e5992b1eb Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Tue, 13 Dec 2022 16:58:52 +0100 Subject: [PATCH 34/40] Update to latest --- docs/wiki/The CI environment - Static validation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/The CI environment - Static validation.md b/docs/wiki/The CI environment - Static validation.md index abcbf767c5..8b2cf2d76c 100644 --- a/docs/wiki/The CI environment - Static validation.md +++ b/docs/wiki/The CI environment - Static validation.md @@ -60,7 +60,7 @@ To test the API versions, the test leverages the file `utilities/src/apiSpecsLis > **NOTE:** This functionality has a dependency on the [AzureAPICrawler](https://www.powershellgallery.com/packages/AzureAPICrawler) PowerShell module. -The pipeline `platform.apiSpecs.yml` updates this file using the script `utilities/tools/platform/Set-ApiSpecsFile.ps1` and, once registered, runs on a weekly schedule. During runtime, the script installs & imports the `AzureAPICrawler` module, fetches all available API versions for all Resource Types via the module and updates the JSON file according to the latest information. +The pipeline `platform.apiSpecs.yml` updates this file using the script `utilities/tools/platform/Set-ApiSpecsFile.ps1` and, once registered, runs on a weekly schedule. Upon execution, the script installs & imports the `AzureAPICrawler` module, fetches all available API versions for all Resource Types via the module and updates the JSON file according to the latest information. # Verify the static validation of your module locally From 86f59badb3d5cdf70ae748e5c12860393d699668 Mon Sep 17 00:00:00 2001 From: Alexander Sehr Date: Sun, 18 Dec 2022 23:49:38 +0100 Subject: [PATCH 35/40] Update settings.yml Co-authored-by: Erika Gressi <56914614+eriqua@users.noreply.github.com> --- settings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.yml b/settings.yml index 5e82280e1e..1c5ac39f50 100644 --- a/settings.yml +++ b/settings.yml @@ -7,7 +7,7 @@ variables: # See: https://github.com/Azure/ResourceModules/wiki/The%20library%20-%20Module%20design#telemetry enableDefaultTelemetry: true - ######################### + ######################## ## Tokens settings ## ######################### From 58d6bb79abdd12b0b35a4f8752c0f3181443e826 Mon Sep 17 00:00:00 2001 From: Alexander Sehr Date: Sun, 18 Dec 2022 23:49:52 +0100 Subject: [PATCH 36/40] Update settings.yml Co-authored-by: Erika Gressi <56914614+eriqua@users.noreply.github.com> --- settings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.yml b/settings.yml index 1c5ac39f50..4329c89ec0 100644 --- a/settings.yml +++ b/settings.yml @@ -8,7 +8,7 @@ variables: enableDefaultTelemetry: true ######################## - ## Tokens settings ## + ## Token settings ## ######################### # the 'localToken_' prefix will be removed from the key name when the pipelines run. From 8d8df210437c860503ae916ba15ad0eb8b0e6c3e Mon Sep 17 00:00:00 2001 From: Alexander Sehr Date: Sun, 18 Dec 2022 23:50:03 +0100 Subject: [PATCH 37/40] Update settings.yml Co-authored-by: Erika Gressi <56914614+eriqua@users.noreply.github.com> --- settings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.yml b/settings.yml index 4329c89ec0..73473ec5dd 100644 --- a/settings.yml +++ b/settings.yml @@ -9,7 +9,7 @@ variables: ######################## ## Token settings ## - ######################### + ######################## # the 'localToken_' prefix will be removed from the key name when the pipelines run. # e.g. if you have a token in your parameter file as <>, then the token defined in this file looks like "localToken_customKey": 'value' From defea2d790cf8da671cbe24a36b9d7d075d6f526 Mon Sep 17 00:00:00 2001 From: CARMLPipelinePrincipal Date: Sun, 18 Dec 2022 22:52:27 +0000 Subject: [PATCH 38/40] Push updated API Specs file --- utilities/src/apiSpecsList.json | 212 +++++++++++++++++++++----------- 1 file changed, 140 insertions(+), 72 deletions(-) diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json index 6df85f315f..f048b364f6 100644 --- a/utilities/src/apiSpecsList.json +++ b/utilities/src/apiSpecsList.json @@ -1936,7 +1936,7 @@ "2021-05-01-preview", "2022-06-15-preview" ], - "botServices/Connections": [ + "botServices/connections": [ "2017-12-01", "2018-07-12", "2020-06-02", @@ -2241,24 +2241,34 @@ "2021-04-30", "2021-10-01", "2022-03-01", - "2022-10-01" + "2022-10-01", + "2022-12-01" ], "accounts/commitmentPlans": [ "2021-10-01", "2022-03-01", - "2022-10-01" + "2022-10-01", + "2022-12-01" ], "accounts/deployments": [ "2021-10-01", "2022-03-01", - "2022-10-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-10-01", + "2022-12-01" + ], + "commitmentPlans": [ + "2022-12-01" + ], + "commitmentPlans/accountAssociations": [ + "2022-12-01" ] }, "Microsoft.Communication": { @@ -3698,7 +3708,8 @@ "2022-04-01", "2022-05-01", "2022-09-01-preview", - "2022-10-01-preview" + "2022-10-01-preview", + "2022-11-01-preview" ], "backupVaults/backupInstances": [ "2021-01-01", @@ -3714,7 +3725,8 @@ "2022-04-01", "2022-05-01", "2022-09-01-preview", - "2022-10-01-preview" + "2022-10-01-preview", + "2022-11-01-preview" ], "backupVaults/backupPolicies": [ "2021-01-01", @@ -3730,11 +3742,13 @@ "2022-04-01", "2022-05-01", "2022-09-01-preview", - "2022-10-01-preview" + "2022-10-01-preview", + "2022-11-01-preview" ], "backupVaults/backupResourceGuardProxies": [ "2022-09-01-preview", - "2022-10-01-preview" + "2022-10-01-preview", + "2022-11-01-preview" ], "resourceGuards": [ "2021-07-01", @@ -3747,7 +3761,8 @@ "2022-04-01", "2022-05-01", "2022-09-01-preview", - "2022-10-01-preview" + "2022-10-01-preview", + "2022-11-01-preview" ] }, "Microsoft.DataShare": { @@ -3847,7 +3862,7 @@ "2018-06-01-privatepreview" ] }, - "Microsoft.DBforMySQL": { + "Microsoft.DBForMySql": { "flexibleServers": [ "2020-07-01-preview", "2020-07-01-privatepreview", @@ -3884,7 +3899,7 @@ "2017-12-01-preview", "2018-06-01-privatepreview" ], - "servers/Administrators": [ + "servers/administrators": [ "2017-12-01", "2017-12-01-preview", "2018-06-01-privatepreview" @@ -3932,24 +3947,28 @@ "2021-06-01-preview", "2021-06-15-privatepreview", "2022-01-20-preview", - "2022-03-08-preview" + "2022-03-08-preview", + "2022-12-01" ], "flexibleServers/administrators": [ - "2022-03-08-preview" + "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-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-03-08-preview", + "2022-12-01" ], "flexibleServers/firewallRules": [ "2020-02-14-preview", @@ -3959,7 +3978,8 @@ "2021-06-01-preview", "2021-06-15-privatepreview", "2022-01-20-preview", - "2022-03-08-preview" + "2022-03-08-preview", + "2022-12-01" ], "flexibleServers/keys": [ "2020-02-14-privatepreview" @@ -4080,7 +4100,8 @@ "2021-09-03-preview", "2022-02-10-preview", "2022-04-01-preview", - "2022-09-09" + "2022-09-09", + "2022-10-14-preview" ], "applicationGroups/applications": [ "2019-01-23-preview", @@ -4098,7 +4119,8 @@ "2021-09-03-preview", "2022-02-10-preview", "2022-04-01-preview", - "2022-09-09" + "2022-09-09", + "2022-10-14-preview" ], "hostPools": [ "2019-01-23-preview", @@ -4116,7 +4138,8 @@ "2021-09-03-preview", "2022-02-10-preview", "2022-04-01-preview", - "2022-09-09" + "2022-09-09", + "2022-10-14-preview" ], "hostPools/msixPackages": [ "2020-09-21-preview", @@ -4131,13 +4154,15 @@ "2021-09-03-preview", "2022-02-10-preview", "2022-04-01-preview", - "2022-09-09" + "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-04-01-preview", + "2022-10-14-preview" ], "scalingPlans": [ "2020-11-10-preview", @@ -4149,11 +4174,13 @@ "2021-09-03-preview", "2022-02-10-preview", "2022-04-01-preview", - "2022-09-09" + "2022-09-09", + "2022-10-14-preview" ], "scalingPlans/pooledSchedules": [ "2022-04-01-preview", - "2022-09-09" + "2022-09-09", + "2022-10-14-preview" ], "workspaces": [ "2019-01-23-preview", @@ -4171,13 +4198,15 @@ "2021-09-03-preview", "2022-02-10-preview", "2022-04-01-preview", - "2022-09-09" + "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-04-01-preview", + "2022-10-14-preview" ] }, "Microsoft.DevCenter": { @@ -5857,7 +5886,8 @@ "2021-12-10-preview", "2022-03-10", "2022-05-10-preview", - "2022-08-11-preview" + "2022-08-11-preview", + "2022-11-10" ], "machines/extensions": [ "2019-08-02", @@ -5874,7 +5904,8 @@ "2021-12-10-preview", "2022-03-10", "2022-05-10-preview", - "2022-08-11-preview" + "2022-08-11-preview", + "2022-11-10" ], "privateLinkScopes": [ "2020-08-15-preview", @@ -5887,7 +5918,8 @@ "2021-12-10-preview", "2022-03-10", "2022-05-10-preview", - "2022-08-11-preview" + "2022-08-11-preview", + "2022-11-10" ], "privateLinkScopes/privateEndpointConnections": [ "2020-08-15-preview", @@ -5900,7 +5932,8 @@ "2021-12-10-preview", "2022-03-10", "2022-05-10-preview", - "2022-08-11-preview" + "2022-08-11-preview", + "2022-11-10" ], "privateLinkScopes/scopedResources": [ "2020-08-15-preview" @@ -6099,7 +6132,8 @@ "2020-05-01-preview", "2021-02-01-preview", "2021-08-01", - "2022-06-15" + "2022-06-15", + "2022-08-01-preview" ], "webtests": [ "2015-05-01", @@ -7903,7 +7937,7 @@ "2020-04-01-preview", "2022-07-01" ], - "dnszones": [ + "dnsZones": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7911,7 +7945,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/A": [ + "dnsZones/A": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7919,7 +7953,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/AAAA": [ + "dnsZones/AAAA": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7933,7 +7967,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/CNAME": [ + "dnsZones/CNAME": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7941,7 +7975,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/MX": [ + "dnsZones/MX": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7949,7 +7983,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/NS": [ + "dnsZones/NS": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7957,7 +7991,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/PTR": [ + "dnsZones/PTR": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7965,7 +7999,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/SOA": [ + "dnsZones/SOA": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7973,7 +8007,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/SRV": [ + "dnsZones/SRV": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -7981,7 +8015,7 @@ "2018-03-01-preview", "2018-05-01" ], - "dnszones/TXT": [ + "dnsZones/TXT": [ "2015-05-04-preview", "2016-04-01", "2017-09-01", @@ -11531,7 +11565,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "alertRules/actions": [ "2019-01-01-preview", @@ -11550,7 +11585,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "automationRules": [ "2019-01-01-preview", @@ -11567,7 +11603,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "bookmarks": [ "2019-01-01-preview", @@ -11585,7 +11622,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "bookmarks/relations": [ "2019-01-01-preview", @@ -11599,7 +11637,8 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "cases": [ "2019-01-01-preview" @@ -11627,7 +11666,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "entityQueries": [ "2021-03-01-preview", @@ -11641,13 +11681,15 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", - "2022-11-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-11-01-preview", + "2022-12-01-preview" ], "incidents": [ "2019-01-01-preview", @@ -11667,7 +11709,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "incidents/comments": [ "2019-01-01-preview", @@ -11687,7 +11730,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "incidents/relations": [ "2019-01-01-preview", @@ -11706,7 +11750,11 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" + ], + "incidents/tasks": [ + "2022-12-01-preview" ], "metadata": [ "2021-03-01-preview", @@ -11720,7 +11768,8 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "onboardingStates": [ "2021-03-01-preview", @@ -11737,7 +11786,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "securityMLAnalyticsSettings": [ "2022-05-01-preview", @@ -11747,7 +11797,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "settings": [ "2019-01-01-preview", @@ -11762,7 +11813,8 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "sourcecontrols": [ "2021-03-01-preview", @@ -11776,7 +11828,8 @@ "2022-08-01-preview", "2022-09-01-preview", "2022-10-01-preview", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "threatIntelligence/indicators": [ "2019-01-01-preview", @@ -11794,7 +11847,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "watchlists": [ "2019-01-01-preview", @@ -11813,7 +11867,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ], "watchlists/watchlistItems": [ "2019-01-01-preview", @@ -11832,7 +11887,8 @@ "2022-09-01-preview", "2022-10-01-preview", "2022-11-01", - "2022-11-01-preview" + "2022-11-01-preview", + "2022-12-01-preview" ] }, "Microsoft.SerialConsole": { @@ -11849,7 +11905,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/AuthorizationRules": [ "2014-09-01", @@ -11859,7 +11916,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/disasterRecoveryConfigs": [ "2017-04-01", @@ -11867,7 +11925,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/ipfilterrules": [ "2018-01-01-preview" @@ -11881,7 +11940,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/networkRuleSets": [ "2017-04-01", @@ -11889,14 +11949,16 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "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-01-01-preview", + "2022-10-01-preview" ], "namespaces/queues": [ "2014-09-01", @@ -11906,7 +11968,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/queues/authorizationRules": [ "2014-09-01", @@ -11916,7 +11979,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/topics": [ "2014-09-01", @@ -11926,7 +11990,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/topics/authorizationRules": [ "2014-09-01", @@ -11936,7 +12001,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/topics/subscriptions": [ "2014-09-01", @@ -11946,7 +12012,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/topics/subscriptions/rules": [ "2017-04-01", @@ -11954,7 +12021,8 @@ "2021-01-01-preview", "2021-06-01-preview", "2021-11-01", - "2022-01-01-preview" + "2022-01-01-preview", + "2022-10-01-preview" ], "namespaces/virtualnetworkrules": [ "2018-01-01-preview" From 5d9973d49476911613edfd0c6dd95fc6ff56cd10 Mon Sep 17 00:00:00 2001 From: AlexanderSehr Date: Mon, 19 Dec 2022 13:25:22 +0100 Subject: [PATCH 39/40] Added missing passthru of param --- utilities/tools/platform/Set-ApiSpecsFile.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utilities/tools/platform/Set-ApiSpecsFile.ps1 b/utilities/tools/platform/Set-ApiSpecsFile.ps1 index 9792661071..b11dfb1402 100644 --- a/utilities/tools/platform/Set-ApiSpecsFile.ps1 +++ b/utilities/tools/platform/Set-ApiSpecsFile.ps1 @@ -35,8 +35,8 @@ function Set-ApiSpecsFile { # Install and or import module if (-not (Get-Module 'AzureAPICrawler' -ListAvailable)) { - if ($PSCmdlet.ShouldProcess("Module 'AzureAPICrawler with version [0.2.0]'", 'Install')) { - $null = Install-Module 'AzureAPICrawler' -Scope 'CurrentUser' -Repository 'PSGallery' -RequiredVersion '0.2.0' -Force + if ($PSCmdlet.ShouldProcess("Module 'AzureAPICrawler with version [$ModuleVersion]'", 'Install')) { + $null = Install-Module 'AzureAPICrawler' -Scope 'CurrentUser' -Repository 'PSGallery' -RequiredVersion $ModuleVersion -Force } } @@ -44,7 +44,7 @@ function Set-ApiSpecsFile { # Fetch data $getInputObject = @{ - IncludePreview = $true + IncludePreview = $IncludePreview Verbose = $true } $res = Get-AzureApiSpecsVersionList @getInputObject From 484343f19c8fa8eee8e024b1911a5f670e52ab18 Mon Sep 17 00:00:00 2001 From: CARMLPipelinePrincipal Date: Mon, 19 Dec 2022 12:28:21 +0000 Subject: [PATCH 40/40] Push updated API Specs file --- utilities/src/apiSpecsList.json | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/utilities/src/apiSpecsList.json b/utilities/src/apiSpecsList.json index f048b364f6..a9998e5471 100644 --- a/utilities/src/apiSpecsList.json +++ b/utilities/src/apiSpecsList.json @@ -6342,7 +6342,8 @@ "2021-01-01", "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ], "clusters/attachedDatabaseConfigurations": [ "2019-09-07", @@ -6353,7 +6354,8 @@ "2021-01-01", "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ], "clusters/databases": [ "2017-09-07-privatepreview", @@ -6368,7 +6370,8 @@ "2021-01-01", "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ], "clusters/databases/dataConnections": [ "2019-01-21", @@ -6381,7 +6384,8 @@ "2021-01-01", "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ], "clusters/databases/eventhubconnections": [ "2017-09-07-privatepreview", @@ -6395,18 +6399,21 @@ "2021-01-01", "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ], "clusters/databases/scripts": [ "2021-01-01", "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ], "clusters/managedPrivateEndpoints": [ "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ], "clusters/principalAssignments": [ "2019-11-09", @@ -6416,12 +6423,14 @@ "2021-01-01", "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ], "clusters/privateEndpointConnections": [ "2021-08-27", "2022-02-01", - "2022-07-07" + "2022-07-07", + "2022-11-11" ] }, "Microsoft.LabServices": {